diff options
author | Travis Oliphant <oliphant@enthought.com> | 2009-09-23 22:15:10 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2009-09-23 22:15:10 +0000 |
commit | ab5776e91262767af584bede2ee945793de5387a (patch) | |
tree | c604215027548337579f75a553a09da30669b87d /numpy/core/_internal.py | |
parent | 65d6067edccb62ac5f8a01f83ac604e5392b6f1a (diff) | |
download | numpy-ab5776e91262767af584bede2ee945793de5387a.tar.gz |
Fix bug in array descriptor conversion when third argument to record array is a tuple of array scalars.
Diffstat (limited to 'numpy/core/_internal.py')
-rw-r--r-- | numpy/core/_internal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/_internal.py b/numpy/core/_internal.py index b89c94d9b..920667623 100644 --- a/numpy/core/_internal.py +++ b/numpy/core/_internal.py @@ -3,7 +3,7 @@ import re import sys -from _mx_datetime_parser import * +#from _mx_datetime_parser import * if (sys.byteorder == 'little'): _nbo = '<' |