()
| 334 | "{!r}".format(__name__, attr)) |
| 335 | |
| 336 | def __dir__(): |
| 337 | public_symbols = globals().keys() | {'testing'} |
| 338 | public_symbols -= { |
| 339 | "core", "matrixlib", |
| 340 | # These were moved in 1.25 and may be deprecated eventually: |
| 341 | "ModuleDeprecationWarning", "VisibleDeprecationWarning", |
| 342 | "ComplexWarning", "TooHardError", "AxisError" |
| 343 | } |
| 344 | return list(public_symbols) |
| 345 | |
| 346 | # Pytest testing |
| 347 | from numpy._pytesttester import PytestTester |