diff options
author | Jarrod Millman <millman@berkeley.edu> | 2007-10-29 15:16:34 +0000 |
---|---|---|
committer | Jarrod Millman <millman@berkeley.edu> | 2007-10-29 15:16:34 +0000 |
commit | 7171e1cad5d48627ed95544be9fd7ac288f3d52b (patch) | |
tree | 619383b04cb5605e44ba926ed007fc25513cf52f /numpy/numarray | |
parent | 0b77f0e5f0e46b2ef7c570ebda046c34bbcc0f26 (diff) | |
download | numpy-7171e1cad5d48627ed95544be9fd7ac288f3d52b.tar.gz |
cleaning up after reindent.py
Diffstat (limited to 'numpy/numarray')
-rw-r--r-- | numpy/numarray/numerictypes.py | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/numpy/numarray/numerictypes.py b/numpy/numarray/numerictypes.py index 1e9cbb4a7..0c0d4774f 100644 --- a/numpy/numarray/numerictypes.py +++ b/numpy/numarray/numerictypes.py @@ -473,24 +473,24 @@ if HasUInt64: } else: _MaximumType = { - Bool : Int64, - - Int8 : Int64, - Int16 : Int64, - Int32 : Int64, - Int64 : Int64, - - UInt8 : Int64, - UInt16 : Int64, - UInt32 : Int64, - UInt8 : Int64, - - Float32 : Float64, - Float64 : Float64, - - Complex32 : Complex64, - Complex64 : Complex64 - } + Bool : Int64, + + Int8 : Int64, + Int16 : Int64, + Int32 : Int64, + Int64 : Int64, + + UInt8 : Int64, + UInt16 : Int64, + UInt32 : Int64, + UInt8 : Int64, + + Float32 : Float64, + Float64 : Float64, + + Complex32 : Complex64, + Complex64 : Complex64 + } def MaximumType(t): """returns the type of highest precision of the same general kind as 't'""" |