()
| 769 | raise AttributeError(f"module {__name__!r} has no attribute {attr!r}") |
| 770 | |
| 771 | def __dir__(): |
| 772 | public_symbols = ( |
| 773 | globals().keys() | __numpy_submodules__ |
| 774 | ) |
| 775 | public_symbols -= { |
| 776 | "matrixlib", "matlib", "tests", "conftest", "version", |
| 777 | "array_api" |
| 778 | } |
| 779 | return list(public_symbols) |
| 780 | |
| 781 | # Pytest testing |
| 782 | from numpy._pytesttester import PytestTester |
nothing calls this directly
no test coverage detected
searching dependent graphs…