modules.py 538 B

123456789101112131415
  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 has no attribute
  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.ma.mrecords # E: Module has no attribute