diff options
author | czgdp1807 <gdp.1807@gmail.com> | 2021-08-07 11:05:40 +0530 |
---|---|---|
committer | czgdp1807 <gdp.1807@gmail.com> | 2021-08-07 11:05:40 +0530 |
commit | 321e028b90526ec40df281ae543f18aa4434bcd3 (patch) | |
tree | 76267d734de77cc1a045ec6aac6a66d8bbf342f3 /numpy/tests/test_public_api.py | |
parent | 3dcf3a9f6eeabdef0c73e0262fc329bec7a23aa5 (diff) | |
download | numpy-321e028b90526ec40df281ae543f18aa4434bcd3.tar.gz |
Shifted to CopyMode to np.array_api
Diffstat (limited to 'numpy/tests/test_public_api.py')
-rw-r--r-- | numpy/tests/test_public_api.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/tests/test_public_api.py b/numpy/tests/test_public_api.py index 6e4a8dee0..5fb06f71f 100644 --- a/numpy/tests/test_public_api.py +++ b/numpy/tests/test_public_api.py @@ -137,6 +137,7 @@ def test_NPY_NO_EXPORT(): # current status is fine. For others it may make sense to work on making them # private, to clean up our public API and avoid confusion. PUBLIC_MODULES = ['numpy.' + s for s in [ + "array_api", "ctypeslib", "distutils", "distutils.cpuinfo", @@ -321,6 +322,7 @@ def is_unexpected(name): # These are present in a directory with an __init__.py but cannot be imported # code_generators/ isn't installed, but present for an inplace build SKIP_LIST = [ + "numpy.array_api.CopyMode", "numpy.core.code_generators", "numpy.core.code_generators.genapi", "numpy.core.code_generators.generate_umath", |