modules.pyi 621 B

1234567891011121314151617
  1. import numpy as np
  2. np.testing.bob # E: Module has no attribute
  3. np.bob # E: Module has no attribute
  4. # Stdlib modules in the namespace by accident
  5. np.warnings # E: Module has no attribute
  6. np.sys # E: Module has no attribute
  7. np.os # E: Module "numpy" does not explicitly export
  8. np.math # E: Module has no attribute
  9. # Public sub-modules that are not imported to their parent module by default;
  10. # e.g. one must first execute `import numpy.lib.recfunctions`
  11. np.lib.recfunctions # E: Module has no attribute
  12. np.__deprecated_attrs__ # E: Module has no attribute
  13. np.__expired_functions__ # E: Module has no attribute