Skip to content

Commit

Permalink
Fixes to convertcode.py
Browse files Browse the repository at this point in the history
  • Loading branch information
teoliphant committed Jan 5, 2006
1 parent e74ea10 commit 6a0653c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion THANKS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Perry Greenfield, J Todd Miller, Rick White, Paul Barrett for Numarray
Paul Dubois for Masked Arrays
Pearu Peterson for f2py and distutils and help with code organization
Robert Kern for mtrand, bug fixes, help with distutils, and code organization
Eric Jones for weave and other sundry subroutines
Eric Jones for sundry subroutines
Fernando Perez for code snippets, ideas, bufixes, and testing.
John Hunter for code snippets (from matplotlib)
Chris Hanley for help with records.py, testing, and bug fixes.
Expand Down
2 changes: 1 addition & 1 deletion numpy/core/numerictypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
generic
bool_
numeric
number
integer
signedinteger (intxx)
byte
Expand Down
8 changes: 4 additions & 4 deletions numpy/lib/convertcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 6a0653c

Please sign in to comment.