From 2812406e48a7ffa011dc60ed37dda6131c08ae3d Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Tue, 5 Apr 2011 13:28:50 -0600 Subject: STY: Replace remaining old style classes with classes subclassing object. --- numpy/numarray/numerictypes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'numpy/numarray') 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 -- cgit v1.2.1