diff options
author | Jarrod Millman <millman@berkeley.edu> | 2007-10-29 14:58:18 +0000 |
---|---|---|
committer | Jarrod Millman <millman@berkeley.edu> | 2007-10-29 14:58:18 +0000 |
commit | 0b77f0e5f0e46b2ef7c570ebda046c34bbcc0f26 (patch) | |
tree | c7609a2a685fd5bff235d812b8c5705621216f4c /numpy/numarray | |
parent | aa3c27cce3d0625f719b812c9e6b0aa73114c612 (diff) | |
download | numpy-0b77f0e5f0e46b2ef7c570ebda046c34bbcc0f26.tar.gz |
ran reindent.py to clean up whitespace
Diffstat (limited to 'numpy/numarray')
-rw-r--r-- | numpy/numarray/image.py | 1 | ||||
-rw-r--r-- | numpy/numarray/matrix.py | 1 | ||||
-rw-r--r-- | numpy/numarray/numerictypes.py | 30 |
3 files changed, 15 insertions, 17 deletions
diff --git a/numpy/numarray/image.py b/numpy/numarray/image.py index e24326f79..323528905 100644 --- a/numpy/numarray/image.py +++ b/numpy/numarray/image.py @@ -12,4 +12,3 @@ http://svn.scipy.org/svn/scipy/trunk/Lib/stsci or by downloading and installing all of SciPy from http://www.scipy.org. """ raise ImportError(msg) - diff --git a/numpy/numarray/matrix.py b/numpy/numarray/matrix.py index a39812e1f..86d79bbe2 100644 --- a/numpy/numarray/matrix.py +++ b/numpy/numarray/matrix.py @@ -5,4 +5,3 @@ from numpy import matrix as _matrix def Matrix(data, typecode=None, copy=1, savespace=0): return _matrix(data, typecode, copy=copy) - diff --git a/numpy/numarray/numerictypes.py b/numpy/numarray/numerictypes.py index 490ced970..1e9cbb4a7 100644 --- a/numpy/numarray/numerictypes.py +++ b/numpy/numarray/numerictypes.py @@ -472,25 +472,25 @@ if HasUInt64: Complex64 : Complex64 } else: - _MaximumType = { - Bool : Int64, + _MaximumType = { + Bool : Int64, - Int8 : Int64, - Int16 : Int64, - Int32 : Int64, - Int64 : Int64, + Int8 : Int64, + Int16 : Int64, + Int32 : Int64, + Int64 : Int64, - UInt8 : Int64, - UInt16 : Int64, - UInt32 : Int64, - UInt8 : Int64, + UInt8 : Int64, + UInt16 : Int64, + UInt32 : Int64, + UInt8 : Int64, - Float32 : Float64, - Float64 : Float64, + Float32 : Float64, + Float64 : Float64, - Complex32 : Complex64, - Complex64 : Complex64 - } + Complex32 : Complex64, + Complex64 : Complex64 + } def MaximumType(t): """returns the type of highest precision of the same general kind as 't'""" |