summaryrefslogtreecommitdiff
path: root/numpy/tests/test_public_api.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/tests/test_public_api.py')
-rw-r--r--numpy/tests/test_public_api.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/numpy/tests/test_public_api.py b/numpy/tests/test_public_api.py
index a7bd0f115..6e4a8dee0 100644
--- a/numpy/tests/test_public_api.py
+++ b/numpy/tests/test_public_api.py
@@ -40,7 +40,7 @@ def test_numpy_namespace():
'byte_bounds': 'numpy.lib.utils.byte_bounds',
'compare_chararrays': 'numpy.core._multiarray_umath.compare_chararrays',
'deprecate': 'numpy.lib.utils.deprecate',
- 'deprecate_with_doc': 'numpy.lib.utils.<lambda>',
+ 'deprecate_with_doc': 'numpy.lib.utils.deprecate_with_doc',
'disp': 'numpy.lib.function_base.disp',
'fastCopyAndTranspose': 'numpy.core._multiarray_umath._fastCopyAndTranspose',
'get_array_wrap': 'numpy.lib.shape_base.get_array_wrap',
@@ -154,6 +154,7 @@ PUBLIC_MODULES = ['numpy.' + s for s in [
"lib.mixins",
"lib.recfunctions",
"lib.scimath",
+ "lib.stride_tricks",
"linalg",
"ma",
"ma.extras",
@@ -166,10 +167,10 @@ PUBLIC_MODULES = ['numpy.' + s for s in [
"polynomial.laguerre",
"polynomial.legendre",
"polynomial.polynomial",
- "polynomial.polyutils",
"random",
"testing",
"typing",
+ "typing.mypy_plugin",
"version",
]]
@@ -243,6 +244,7 @@ PRIVATE_BUT_PRESENT_MODULES = ['numpy.' + s for s in [
"distutils.fcompiler.nv",
"distutils.fcompiler.sun",
"distutils.fcompiler.vast",
+ "distutils.fcompiler.fujitsu",
"distutils.from_template",
"distutils.intelccompiler",
"distutils.lib2def",
@@ -278,7 +280,6 @@ PRIVATE_BUT_PRESENT_MODULES = ['numpy.' + s for s in [
"lib.npyio",
"lib.polynomial",
"lib.shape_base",
- "lib.stride_tricks",
"lib.twodim_base",
"lib.type_check",
"lib.ufunclike",
@@ -292,6 +293,7 @@ PRIVATE_BUT_PRESENT_MODULES = ['numpy.' + s for s in [
"ma.timer_comparison",
"matrixlib",
"matrixlib.defmatrix",
+ "polynomial.polyutils",
"random.mtrand",
"random.bit_generator",
"testing.print_coercion_tables",