+
    CDji                     |    ^ RI t ^ RIt^ RIt^ RIHt ^ RIHt ]P                  P                  ]RR7      R 4       t	R# )    N)IS_WASM)run_subprocesszcan't start subprocess)reasonc                  j    \         P                  ! R 4      p \        \        P                  RV 34       R# )a  
        import sys
        from importlib.util import LazyLoader, find_spec, module_from_spec

        # create lazy load of numpy as np
        spec = find_spec("numpy")
        module = module_from_spec(spec)
        sys.modules["numpy"] = module
        loader = LazyLoader(spec.loader)
        loader.exec_module(module)
        np = module

        # test a subpackage import
        from numpy.lib import recfunctions  # noqa: F401

        # test triggering the import of the package
        np.ndarray
        z-cN)textwrapdedentr   sys
executable)codes    V/data/cameron/venvs/s3viz/lib/python3.14/site-packages/numpy/tests/test_lazyloading.pytest_lazy_loadr   
   s,     ??  D$ CNND$/0    )
r	   r   pytestnumpy.testingr   numpy.testing._private.utilsr   markskipifr    r   r   <module>r      s=    
   ! 7 G$<=1 >1r   