diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-08-10 10:42:59 +0200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-08-10 10:50:36 +0200 |
commit | d6e8c91cc8d4cf173f7378eba69bcf1e933dd879 (patch) | |
tree | c07011b060d5c8639f2aa24b3f664134e4065451 /numpy/testing/decorators.py | |
parent | 928289bf37081f4deb6755e226600998ccc23610 (diff) | |
download | numpy-d6e8c91cc8d4cf173f7378eba69bcf1e933dd879.tar.gz |
MAINT: remove unused and broken parts of numpy.testing
Deprecate np.testing.importall - it's pointless and partially broken.
Diffstat (limited to 'numpy/testing/decorators.py')
-rw-r--r-- | numpy/testing/decorators.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/decorators.py b/numpy/testing/decorators.py index 8d1fb04bb..91659bb8d 100644 --- a/numpy/testing/decorators.py +++ b/numpy/testing/decorators.py @@ -15,10 +15,10 @@ function name, setup and teardown functions and so on - see """ from __future__ import division, absolute_import, print_function -import sys import warnings import collections + def slow(t): """ Label a test as 'slow'. |