diff options
author | Travis Oliphant <oliphant@enthought.com> | 2007-05-23 22:04:51 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2007-05-23 22:04:51 +0000 |
commit | 50dff22bb5d9eb113531267f8c64081792309b03 (patch) | |
tree | 7f862f16a66eeb01bd36edb60eed07ab0c5a4b7b /numpy/lib/getlimits.py | |
parent | d4c96cad19a58d376009f9c23aa8122dcc6d472e (diff) | |
download | numpy-50dff22bb5d9eb113531267f8c64081792309b03.tar.gz |
Fix tab/space.
Diffstat (limited to 'numpy/lib/getlimits.py')
-rw-r--r-- | numpy/lib/getlimits.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/getlimits.py b/numpy/lib/getlimits.py index ac98babc1..00c3ea846 100644 --- a/numpy/lib/getlimits.py +++ b/numpy/lib/getlimits.py @@ -131,7 +131,7 @@ class iinfo: self.dtype = N.dtype(type) self.kind = self.dtype.kind self.bits = self.dtype.itemsize * 8 - self.key = "%s%d" % (self.kind, self.bits) + self.key = "%s%d" % (self.kind, self.bits) if not self.kind in 'iu': raise ValueError("Invalid integer data type.") |