summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Dale <dsdale24@gmail.com>2010-07-31 12:27:09 +0000
committerDarren Dale <dsdale24@gmail.com>2010-07-31 12:27:09 +0000
commit400a612118fb24f28ee5c83d027432bc66492eff (patch)
tree303a4a43b4327a0164928e5f5698c90cdae26d74
parent62ebd8eb6a761fc7fc8e28f16b4c7a4a3d0465ac (diff)
downloadnumpy-400a612118fb24f28ee5c83d027432bc66492eff.tar.gz
remove unnecessary import and reload in test_getlimits, which was causing
errors when running the test suite.
-rw-r--r--numpy/core/tests/test_getlimits.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/numpy/core/tests/test_getlimits.py b/numpy/core/tests/test_getlimits.py
index f7f0fd379..f52463cbb 100644
--- a/numpy/core/tests/test_getlimits.py
+++ b/numpy/core/tests/test_getlimits.py
@@ -3,14 +3,6 @@
from numpy.testing import *
-import numpy.lib
-try:
- reload(numpy.lib)
-except NameError:
- # Py3K
- import imp
- imp.reload(numpy.lib)
-
from numpy.core import finfo, iinfo
from numpy import single,double,longdouble
import numpy as np