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