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/core/getlimits.py | |
parent | 06dc70263debc5fbbb3e58592c91ca24766b3e3a (diff) | |
download | numpy-2812406e48a7ffa011dc60ed37dda6131c08ae3d.tar.gz |
STY: Replace remaining old style classes with classes subclassing object.
Diffstat (limited to 'numpy/core/getlimits.py')
-rw-r--r-- | numpy/core/getlimits.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/getlimits.py b/numpy/core/getlimits.py index 53728bc59..37f33c66d 100644 --- a/numpy/core/getlimits.py +++ b/numpy/core/getlimits.py @@ -181,7 +181,7 @@ nexp =%(nexp)6s min= -max ''' % self.__dict__ -class iinfo: +class iinfo(object): """ iinfo(type) |