summaryrefslogtreecommitdiff
path: root/numpy/numarray
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2011-04-05 13:28:50 -0600
committerCharles Harris <charlesr.harris@gmail.com>2011-04-05 13:28:50 -0600
commit2812406e48a7ffa011dc60ed37dda6131c08ae3d (patch)
treeb1aed2c18202686fde71124ebaa4771d52b6afce /numpy/numarray
parent06dc70263debc5fbbb3e58592c91ca24766b3e3a (diff)
downloadnumpy-2812406e48a7ffa011dc60ed37dda6131c08ae3d.tar.gz
STY: Replace remaining old style classes with classes subclassing object.
Diffstat (limited to 'numpy/numarray')
-rw-r--r--numpy/numarray/numerictypes.py4
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