summaryrefslogtreecommitdiff
path: root/numpy/testing
diff options
context:
space:
mode:
authorBas van Beek <b.f.van.beek@vu.nl>2021-11-05 11:11:12 +0100
committerBas van Beek <b.f.van.beek@vu.nl>2021-11-05 11:11:12 +0100
commitb9c0a231665a30836964e8c94ba2f83a08255be2 (patch)
tree0e7f551455159cbc8a91b5fb330c2ec0a0b0d1ec /numpy/testing
parentfe7b1dcfc16fd9a8a1e6ea24ea103abf870282ed (diff)
downloadnumpy-b9c0a231665a30836964e8c94ba2f83a08255be2.tar.gz
MAINT: Add `IS_PYSTON` to `np.testing.__all__`
Diffstat (limited to 'numpy/testing')
-rw-r--r--numpy/testing/__init__.py3
-rw-r--r--numpy/testing/_private/utils.py2
2 files changed, 2 insertions, 3 deletions
diff --git a/numpy/testing/__init__.py b/numpy/testing/__init__.py
index a008f5828..6e06c5b49 100644
--- a/numpy/testing/__init__.py
+++ b/numpy/testing/__init__.py
@@ -8,8 +8,7 @@ away.
from unittest import TestCase
from ._private.utils import *
-from ._private.utils import (_assert_valid_refcount, _gen_alignment_data,
- IS_PYSTON)
+from ._private.utils import (_assert_valid_refcount, _gen_alignment_data)
from ._private import extbuild, decorators as dec
from ._private.nosetester import (
run_module_suite, NoseTester as Tester
diff --git a/numpy/testing/_private/utils.py b/numpy/testing/_private/utils.py
index 3d52f74b2..4c6b64bc9 100644
--- a/numpy/testing/_private/utils.py
+++ b/numpy/testing/_private/utils.py
@@ -35,7 +35,7 @@ __all__ = [
'assert_allclose', 'IgnoreException', 'clear_and_catch_warnings',
'SkipTest', 'KnownFailureException', 'temppath', 'tempdir', 'IS_PYPY',
'HAS_REFCOUNT', 'suppress_warnings', 'assert_array_compare',
- 'assert_no_gc_cycles', 'break_cycles', 'HAS_LAPACK64'
+ 'assert_no_gc_cycles', 'break_cycles', 'HAS_LAPACK64', 'IS_PYSTON',
]