diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-12-06 01:43:36 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-12-06 01:43:36 +0000 |
commit | 4a7ce99355e8a7860f9782a8f0900234c7fa96ee (patch) | |
tree | c4194cb21d4d2e68d5ad6b0fcf78cbe1259c138b /scipy/base/matrix.py | |
parent | bcd661e1bd0d478b22341079c7e5fb60c9353cfc (diff) | |
download | numpy-4a7ce99355e8a7860f9782a8f0900234c7fa96ee.tar.gz |
Fixed typo in cfuncs.py
Diffstat (limited to 'scipy/base/matrix.py')
-rw-r--r-- | scipy/base/matrix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/matrix.py b/scipy/base/matrix.py index fe5528214..01f817f8a 100644 --- a/scipy/base/matrix.py +++ b/scipy/base/matrix.py @@ -88,7 +88,7 @@ class matrix(N.ndarray): if not (fortran or arr.flags.contiguous): arr = arr.copy() - ret = N.ndarray.__new__(subtype, shape, arr.descr, + ret = N.ndarray.__new__(subtype, shape, arr.dtypedescr, buffer=arr, fortran=fortran, swap=arr.flags.swapped) |