diff options
author | Nathan Goldbaum <nathan.goldbaum@gmail.com> | 2022-11-04 12:13:56 -0600 |
---|---|---|
committer | Nathan Goldbaum <nathan.goldbaum@gmail.com> | 2022-11-16 09:14:25 -0700 |
commit | 1a8d3ca45f0a7294784bc200ec436dc8563f654a (patch) | |
tree | ae1e1a7d00205ca9ce3cbf4a9345904f4a09e2e8 /numpy/tests/test_public_api.py | |
parent | 6aacc5167983d7c6f8689d7039294f2fc0d5f5fb (diff) | |
download | numpy-1a8d3ca45f0a7294784bc200ec436dc8563f654a.tar.gz |
API: Add numpy.testing.overrides to aid testing of custom array containers
Closes #15544
Diffstat (limited to 'numpy/tests/test_public_api.py')
-rw-r--r-- | numpy/tests/test_public_api.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/tests/test_public_api.py b/numpy/tests/test_public_api.py index 92a34bf91..d04e24218 100644 --- a/numpy/tests/test_public_api.py +++ b/numpy/tests/test_public_api.py @@ -157,6 +157,7 @@ PUBLIC_MODULES = ['numpy.' + s for s in [ "polynomial.polynomial", "random", "testing", + "testing.overrides", "typing", "typing.mypy_plugin", "version", |