diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2011-04-05 13:28:50 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2011-04-05 13:28:50 -0600 |
commit | 2812406e48a7ffa011dc60ed37dda6131c08ae3d (patch) | |
tree | b1aed2c18202686fde71124ebaa4771d52b6afce /numpy/numarray | |
parent | 06dc70263debc5fbbb3e58592c91ca24766b3e3a (diff) | |
download | numpy-2812406e48a7ffa011dc60ed37dda6131c08ae3d.tar.gz |
STY: Replace remaining old style classes with classes subclassing object.
Diffstat (limited to 'numpy/numarray')
-rw-r--r-- | numpy/numarray/numerictypes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/numarray/numerictypes.py b/numpy/numarray/numerictypes.py index 7bc91612e..70a134855 100644 --- a/numpy/numarray/numerictypes.py +++ b/numpy/numarray/numerictypes.py @@ -137,11 +137,11 @@ class NumericType(object): class BooleanType(NumericType): pass -class SignedType: +class SignedType(object): """Marker class used for signed type check""" pass -class UnsignedType: +class UnsignedType(object): """Marker class used for unsigned type check""" pass |