diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-06-14 01:34:36 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-06-14 01:34:36 +0000 |
commit | 11869d369ab71f39d4a152260f88fae4df276378 (patch) | |
tree | 2379897f600da12a7f05a84e7bb703dfa04ed320 /numpy/core/defchararray.py | |
parent | 6a4ff2dcd299ec2cc154726fbd04cad284edbb10 (diff) | |
download | numpy-11869d369ab71f39d4a152260f88fae4df276378.tar.gz |
Compress Python-side array interface to __array_interface__ attribute.
Diffstat (limited to 'numpy/core/defchararray.py')
-rw-r--r-- | numpy/core/defchararray.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/defchararray.py b/numpy/core/defchararray.py index f79389967..201a860cc 100644 --- a/numpy/core/defchararray.py +++ b/numpy/core/defchararray.py @@ -15,7 +15,7 @@ _unicode = unicode class chararray(ndarray): def __new__(subtype, shape, itemsize=1, unicode=False, buffer=None, - offset=0, strides=None, order=None): + offset=0, strides=None, order='C'): global _globalvar if unicode: |