diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-07-06 06:57:03 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-07-06 06:57:03 +0000 |
commit | 485f171d57748773f8f8d162e89cb668cfc55c11 (patch) | |
tree | 7763641a34502a816ce759204cce2d968fcd35be /numpy/linalg/linalg.py | |
parent | 823ca7e3c354849238f15f1117f7cc8911933fb8 (diff) | |
download | numpy-485f171d57748773f8f8d162e89cb668cfc55c11.tar.gz |
Fix buffered reduce, accumulate, and reduceat.
Diffstat (limited to 'numpy/linalg/linalg.py')
-rw-r--r-- | numpy/linalg/linalg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py index bcbcd3f8d..ab593ce93 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -19,7 +19,7 @@ from numpy.core import * from numpy.lib import * import lapack_lite -fortran_int = int32 +fortran_int = intc # Error object class LinAlgError(Exception): |