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/nosetester.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/nosetester.py')
-rw-r--r-- | numpy/testing/nosetester.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py index f11f04b20..212afe79b 100644 --- a/numpy/testing/nosetester.py +++ b/numpy/testing/nosetester.py @@ -9,10 +9,10 @@ from __future__ import division, absolute_import, print_function import os import sys import warnings -import numpy.testing.utils from numpy.compat import basestring from numpy import ModuleDeprecationWarning + def get_package_name(filepath): """ Given a path where a package is installed, determine its name. @@ -60,7 +60,6 @@ def import_nose(): minimum_nose_version = (0,10,0) try: import nose - from nose.tools import raises except ImportError: fine_nose = False else: |