diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-03-29 14:27:01 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-03-31 11:08:29 -0600 |
commit | 6126789e4addb609b6c99e46a338f5b0bb6f9be3 (patch) | |
tree | cd8ecacebfb92051b71a57d5a704f884e0d9f3bf | |
parent | 0440fb1a5578643e526d254762eee70e4859fb5d (diff) | |
download | numpy-6126789e4addb609b6c99e46a338f5b0bb6f9be3.tar.gz |
MAINT: Remove "bench" from testing modules `__init__`s.
The "bench" testing with the old bench files is no longer supported.
These days we use `runtests.py` and `asv`.
-rw-r--r-- | numpy/__init__.py | 1 | ||||
-rw-r--r-- | numpy/core/__init__.py | 1 | ||||
-rw-r--r-- | numpy/f2py/__init__.py | 1 | ||||
-rw-r--r-- | numpy/fft/__init__.py | 1 | ||||
-rw-r--r-- | numpy/lib/__init__.py | 1 | ||||
-rw-r--r-- | numpy/linalg/__init__.py | 1 | ||||
-rw-r--r-- | numpy/ma/__init__.py | 1 | ||||
-rw-r--r-- | numpy/matrixlib/__init__.py | 1 | ||||
-rw-r--r-- | numpy/polynomial/__init__.py | 1 | ||||
-rw-r--r-- | numpy/random/__init__.py | 1 |
10 files changed, 0 insertions, 10 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index db99294bc..db7bc0368 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -150,7 +150,6 @@ else: # no-one else in the world is using it (though I hope not) from .testing import Tester, _numpy_tester test = _numpy_tester().test - bench = _numpy_tester().bench # Allow distributors to run custom init code from . import _distributor_init diff --git a/numpy/core/__init__.py b/numpy/core/__init__.py index 6db484de4..264324503 100644 --- a/numpy/core/__init__.py +++ b/numpy/core/__init__.py @@ -73,7 +73,6 @@ __all__ += einsumfunc.__all__ from numpy.testing import _numpy_tester test = _numpy_tester().test -bench = _numpy_tester().bench # Make it possible so that ufuncs can be pickled # Here are the loading and unloading functions diff --git a/numpy/f2py/__init__.py b/numpy/f2py/__init__.py index 250c4322b..86cc45b42 100644 --- a/numpy/f2py/__init__.py +++ b/numpy/f2py/__init__.py @@ -71,4 +71,3 @@ def compile(source, from numpy.testing import _numpy_tester test = _numpy_tester().test -bench = _numpy_tester().bench diff --git a/numpy/fft/__init__.py b/numpy/fft/__init__.py index 72d61a728..d1716bd4b 100644 --- a/numpy/fft/__init__.py +++ b/numpy/fft/__init__.py @@ -8,4 +8,3 @@ from .helper import * from numpy.testing import _numpy_tester test = _numpy_tester().test -bench = _numpy_tester().bench diff --git a/numpy/lib/__init__.py b/numpy/lib/__init__.py index cc05232a2..0c2e6dfab 100644 --- a/numpy/lib/__init__.py +++ b/numpy/lib/__init__.py @@ -48,4 +48,3 @@ __all__ += histograms.__all__ from numpy.testing import _numpy_tester test = _numpy_tester().test -bench = _numpy_tester().bench diff --git a/numpy/linalg/__init__.py b/numpy/linalg/__init__.py index 2537926c5..1510a8448 100644 --- a/numpy/linalg/__init__.py +++ b/numpy/linalg/__init__.py @@ -52,4 +52,3 @@ from .linalg import * from numpy.testing import _numpy_tester test = _numpy_tester().test -bench = _numpy_tester().bench diff --git a/numpy/ma/__init__.py b/numpy/ma/__init__.py index fbefc47a4..0689f2932 100644 --- a/numpy/ma/__init__.py +++ b/numpy/ma/__init__.py @@ -53,4 +53,3 @@ __all__ += extras.__all__ from numpy.testing import _numpy_tester test = _numpy_tester().test -bench = _numpy_tester().bench diff --git a/numpy/matrixlib/__init__.py b/numpy/matrixlib/__init__.py index 11dce2928..95713580d 100644 --- a/numpy/matrixlib/__init__.py +++ b/numpy/matrixlib/__init__.py @@ -9,4 +9,3 @@ __all__ = defmatrix.__all__ from numpy.testing import _numpy_tester test = _numpy_tester().test -bench = _numpy_tester().bench diff --git a/numpy/polynomial/__init__.py b/numpy/polynomial/__init__.py index ae5b1f078..f7cbc19b0 100644 --- a/numpy/polynomial/__init__.py +++ b/numpy/polynomial/__init__.py @@ -24,4 +24,3 @@ from .laguerre import Laguerre from numpy.testing import _numpy_tester test = _numpy_tester().test -bench = _numpy_tester().bench diff --git a/numpy/random/__init__.py b/numpy/random/__init__.py index 869818a22..409f50ec0 100644 --- a/numpy/random/__init__.py +++ b/numpy/random/__init__.py @@ -119,4 +119,3 @@ def __RandomState_ctor(): from numpy.testing import _numpy_tester test = _numpy_tester().test -bench = _numpy_tester().bench |