summaryrefslogtreecommitdiff
path: root/numpy/numarray
diff options
context:
space:
mode:
authorJarrod Millman <millman@berkeley.edu>2007-11-19 04:17:36 +0000
committerJarrod Millman <millman@berkeley.edu>2007-11-19 04:17:36 +0000
commit5bb7ee688c5ac1aa5427e6e5b312d63b065f76d9 (patch)
tree0be0aa0a96846c95014c2185bd2dd7b4242c0f18 /numpy/numarray
parent6dbe4f3638977f9d260288aa480596c4a3138543 (diff)
downloadnumpy-5bb7ee688c5ac1aa5427e6e5b312d63b065f76d9.tar.gz
ran reindent.py to cleanup whitespaces
Diffstat (limited to 'numpy/numarray')
-rw-r--r--numpy/numarray/numerictypes.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/numarray/numerictypes.py b/numpy/numarray/numerictypes.py
index 0c0d4774f..612ba0261 100644
--- a/numpy/numarray/numerictypes.py
+++ b/numpy/numarray/numerictypes.py
@@ -474,20 +474,20 @@ 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
}