summaryrefslogtreecommitdiff
path: root/numpy/testing/utils.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-06-10 10:14:34 -0600
committerGitHub <noreply@github.com>2021-06-10 10:14:34 -0600
commitea335bc7d2df5baab56df8f561fccffef172bfea (patch)
tree8e023431fb09de40a4cd661a85c182696bd3e952 /numpy/testing/utils.py
parentdae36b3d26724fdaa5d17656d79e9daf68517321 (diff)
parent004ad4037904de3712774782f77de39a1768a264 (diff)
downloadnumpy-ea335bc7d2df5baab56df8f561fccffef172bfea.tar.gz
Merge pull request #19179 from BvB93/testing
ENH: Add annotations for `np.testing`
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r--numpy/testing/utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py
index 753258c13..20a883304 100644
--- a/numpy/testing/utils.py
+++ b/numpy/testing/utils.py
@@ -12,6 +12,7 @@ warnings.warn("Importing from numpy.testing.utils is deprecated "
DeprecationWarning, stacklevel=2)
from ._private.utils import *
+from ._private.utils import _assert_valid_refcount, _gen_alignment_data
__all__ = [
'assert_equal', 'assert_almost_equal', 'assert_approx_equal',
@@ -24,5 +25,5 @@ __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'
+ 'assert_no_gc_cycles'
]