summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-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
}