summaryrefslogtreecommitdiff
path: root/numpy/numarray
diff options
context:
space:
mode:
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