summaryrefslogtreecommitdiff
path: root/numpy/testing/_private/utils.py
diff options
context:
space:
mode:
authorBas van Beek <b.f.van.beek@vu.nl>2021-06-02 02:58:09 +0200
committerBas van Beek <43369155+BvB93@users.noreply.github.com>2021-06-06 17:58:24 +0200
commit3c8e5da46c1440ea0eb3fe66fdc897d3fbae194d (patch)
tree31e9fb0e9965c8e9f14b07347b2f7a0feabb99d6 /numpy/testing/_private/utils.py
parent22412b3f46451177286f8fc58509a69bb2d95731 (diff)
downloadnumpy-3c8e5da46c1440ea0eb3fe66fdc897d3fbae194d.tar.gz
MAINT: Remove two private functions from `__all__`
Diffstat (limited to 'numpy/testing/_private/utils.py')
-rw-r--r--numpy/testing/_private/utils.py4
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
-