diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-17 00:07:21 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-17 00:07:21 +0000 |
commit | 4593515985f1aa30cf07715ace5eeee6da848c97 (patch) | |
tree | ab13435f4bec383abc7c04ca7b0259b44dd2519d /numpy/core/oldnumeric.py | |
parent | a397b5545b1a20e1b0e39881eb8cf8d2dd26b793 (diff) | |
download | numpy-4593515985f1aa30cf07715ace5eeee6da848c97.tar.gz |
Fixed up usage of dtype to be consistent with new dtype objects.
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 863bd36bc..dad521d84 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.dtype2char +_dt_ = nt.arrtype2char import types |