diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-06-10 10:14:34 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-10 10:14:34 -0600 |
commit | ea335bc7d2df5baab56df8f561fccffef172bfea (patch) | |
tree | 8e023431fb09de40a4cd661a85c182696bd3e952 /numpy/testing/_private/utils.py | |
parent | dae36b3d26724fdaa5d17656d79e9daf68517321 (diff) | |
parent | 004ad4037904de3712774782f77de39a1768a264 (diff) | |
download | numpy-ea335bc7d2df5baab56df8f561fccffef172bfea.tar.gz |
Merge pull request #19179 from BvB93/testing
ENH: Add annotations for `np.testing`
Diffstat (limited to 'numpy/testing/_private/utils.py')
-rw-r--r-- | numpy/testing/_private/utils.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/numpy/testing/_private/utils.py b/numpy/testing/_private/utils.py index 393fedc27..487aa0b4c 100644 --- a/numpy/testing/_private/utils.py +++ b/numpy/testing/_private/utils.py @@ -35,8 +35,7 @@ __all__ = [ 'assert_allclose', 'IgnoreException', 'clear_and_catch_warnings', 'SkipTest', 'KnownFailureException', 'temppath', 'tempdir', 'IS_PYPY', 'HAS_REFCOUNT', 'suppress_warnings', 'assert_array_compare', - '_assert_valid_refcount', '_gen_alignment_data', 'assert_no_gc_cycles', - 'break_cycles', 'HAS_LAPACK64' + 'assert_no_gc_cycles', 'break_cycles', 'HAS_LAPACK64' ] @@ -2518,4 +2517,3 @@ def _no_tracing(func): finally: sys.settrace(original_trace) return wrapper - |