summaryrefslogtreecommitdiff
path: root/numpy/tests/test_public_api.py
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2020-06-17 21:21:58 +0300
committerGitHub <noreply@github.com>2020-06-17 21:21:58 +0300
commit02883d85b5d3f68c12cb1df75f96e0fed741d4a4 (patch)
tree17d344fa051f564d360ef0726018fba99fde64cf /numpy/tests/test_public_api.py
parent95a6774007d1d7898c7da40d9989e9f1dd1b0f40 (diff)
parentd985e8ca2fca154d3770c842a2da1ba6dc3aaf1c (diff)
downloadnumpy-02883d85b5d3f68c12cb1df75f96e0fed741d4a4.tar.gz
Merge pull request #16558 from person142/typing-runtime
ENH: make typing module available at runtime
Diffstat (limited to 'numpy/tests/test_public_api.py')
-rw-r--r--numpy/tests/test_public_api.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/tests/test_public_api.py b/numpy/tests/test_public_api.py
index 9fa61951a..df0e04285 100644
--- a/numpy/tests/test_public_api.py
+++ b/numpy/tests/test_public_api.py
@@ -102,7 +102,7 @@ def test_dir_testing():
"""Assert that output of dir has only one "testing/tester"
attribute without duplicate"""
assert len(dir(np)) == len(set(dir(np)))
-
+
def test_numpy_linalg():
bad_results = check_dir(np.linalg)
@@ -180,6 +180,7 @@ PUBLIC_MODULES = ['numpy.' + s for s in [
"polynomial.polyutils",
"random",
"testing",
+ "typing",
"version",
]]