diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-31 21:02:19 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-31 21:02:19 +0000 |
commit | 41496b7356906d31b61c2f208e622eb4bd0c2ec2 (patch) | |
tree | ff8ade07a7464a2a254bbc17be0792b0acb90d80 /numpy/core/oldnumeric.py | |
parent | 8a52fe2795b224fb9e9daa3877e385a7975a7a5b (diff) | |
download | numpy-41496b7356906d31b61c2f208e622eb4bd0c2ec2.tar.gz |
Change arrtype --> sctype so that dtype is given pre-eminance in determining array type.
Diffstat (limited to 'numpy/core/oldnumeric.py')
-rw-r--r-- | numpy/core/oldnumeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/oldnumeric.py b/numpy/core/oldnumeric.py index 38c35ee49..797ac1087 100644 --- a/numpy/core/oldnumeric.py +++ b/numpy/core/oldnumeric.py @@ -34,7 +34,7 @@ from numeric import asarray, array, correlate, outer, concatenate from umath import sign, absolute, multiply import numeric as _nx import sys -_dt_ = nt.arrtype2char +_dt_ = nt.sctype2char import types |