diff options
author | Sebastian Berg <sebastianb@nvidia.com> | 2022-11-18 14:50:57 +0100 |
---|---|---|
committer | Sebastian Berg <sebastianb@nvidia.com> | 2022-11-30 12:07:51 +0100 |
commit | b0f318b38e7dd305c3ca93e6c912e1391dda999e (patch) | |
tree | 37d8b856b9f38d84c7c3e8256fab1cb9bdc39c2f /numpy/tests/test_public_api.py | |
parent | 3c2717c9a923926ca197bee88b4c5b646b1b93d3 (diff) | |
download | numpy-b0f318b38e7dd305c3ca93e6c912e1391dda999e.tar.gz |
API: Add new exceptions module and move exception exposed via numeric
This means moving ComplexWarning, TooHardError, and AxisError.
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 396375d87..4cd602510 100644 --- a/numpy/tests/test_public_api.py +++ b/numpy/tests/test_public_api.py @@ -137,6 +137,7 @@ PUBLIC_MODULES = ['numpy.' + s for s in [ "doc", "doc.constants", "doc.ufuncs", + "exceptions", "f2py", "fft", "lib", |