diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-21 19:18:18 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-21 19:18:18 +0000 |
commit | 4072234146d63644ed0e658f685a5575ca051d9d (patch) | |
tree | 8c7c3c26f74a9b959cfcf46f92819092e896a791 /numpy/linalg/linalg.py | |
parent | 1b409ce9fe55ebf61eaa5d295753b0b8ad1efcf2 (diff) | |
download | numpy-4072234146d63644ed0e658f685a5575ca051d9d.tar.gz |
Fix a few more improper uses of .dtype attribute.
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 88d76d24e..abb65be18 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -208,7 +208,7 @@ def Heigenvalues(a, UPLO='L'): return w def _convertarray(a): - if issubclass(a.dtype, complexfloating): + if issubclass(a.dtype.type, complexfloating): if a.dtype.char == 'D': a = _fastCT(a) else: |