summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/numerictypes.py2
-rw-r--r--numpy/lib/convertcode.py8
2 files changed, 5 insertions, 5 deletions
diff --git a/numpy/core/numerictypes.py b/numpy/core/numerictypes.py
index 81d80c73f..9d5f9d8b3 100644
--- a/numpy/core/numerictypes.py
+++ b/numpy/core/numerictypes.py
@@ -41,7 +41,7 @@ Exported symbols include:
generic
bool_
- numeric
+ number
integer
signedinteger (intxx)
byte
diff --git a/numpy/lib/convertcode.py b/numpy/lib/convertcode.py
index 6e590fa25..3ae0843e6 100644
--- a/numpy/lib/convertcode.py
+++ b/numpy/lib/convertcode.py
@@ -95,10 +95,10 @@ def fromstr(filestr):
'numpy.core.multiarray')
filestr, fromall1 = changeimports(filestr, 'umath',
'numpy.core.umath')
- filestr, fromall1 = changeimports(filestr, 'Precision', 'numpy.core')
- filestr, fromall2 = changeimports(filestr, 'numerix', 'numpy.core')
- filestr, fromall3 = changeimports(filestr, 'numpy_base', 'numpy.core')
- filestr, fromall3 = changeimports(filestr, 'MLab', 'numpy.core.mlab')
+ filestr, fromall1 = changeimports(filestr, 'Precision', 'numpy')
+ filestr, fromall2 = changeimports(filestr, 'numerix', 'numpy')
+ filestr, fromall3 = changeimports(filestr, 'numpy_base', 'numpy')
+ filestr, fromall3 = changeimports(filestr, 'MLab', 'numpy.lib.mlab')
filestr, fromall3 = changeimports(filestr, 'LinearAlgebra', 'numpy.linalg')
filestr, fromall3 = changeimports(filestr, 'RNG', 'numpy.random')
filestr, fromall3 = changeimports(filestr, 'RandomArray', 'numpy.random')