summaryrefslogtreecommitdiff
path: root/numpy/lib
diff options
context:
space:
mode:
authorMarten van Kerkwijk <mhvk@astro.utoronto.ca>2018-07-02 13:15:10 -0400
committerGitHub <noreply@github.com>2018-07-02 13:15:10 -0400
commita854e702c5314c1decd2c968b30ae5032703ae96 (patch)
treedb6883a156897b2a17c824b7e527c48f9808c48c /numpy/lib
parent58cefeedd70a028d6c26724a1edef57b15bb58f9 (diff)
parent11302b66fec3e9f64e0eb77075344acec65d2c0f (diff)
downloadnumpy-a854e702c5314c1decd2c968b30ae5032703ae96.tar.gz
Merge pull request #11473 from eric-wieser/move-pytesttester
MAINT: Move pytesttester outside of np.testing, to avoid creating unnecessary import dependencies
Diffstat (limited to 'numpy/lib')
-rw-r--r--numpy/lib/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/__init__.py b/numpy/lib/__init__.py
index d764cdc7e..dc40ac67b 100644
--- a/numpy/lib/__init__.py
+++ b/numpy/lib/__init__.py
@@ -46,6 +46,6 @@ __all__ += financial.__all__
__all__ += nanfunctions.__all__
__all__ += histograms.__all__
-from numpy.testing._private.pytesttester import PytestTester
+from numpy._pytesttester import PytestTester
test = PytestTester(__name__)
del PytestTester