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/testing/print_coercion_tables.py | |
parent | 06dc70263debc5fbbb3e58592c91ca24766b3e3a (diff) | |
download | numpy-2812406e48a7ffa011dc60ed37dda6131c08ae3d.tar.gz |
STY: Replace remaining old style classes with classes subclassing object.
Diffstat (limited to 'numpy/testing/print_coercion_tables.py')
-rwxr-xr-x | numpy/testing/print_coercion_tables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/print_coercion_tables.py b/numpy/testing/print_coercion_tables.py index 7b5320d7e..d87544987 100755 --- a/numpy/testing/print_coercion_tables.py +++ b/numpy/testing/print_coercion_tables.py @@ -4,7 +4,7 @@ import numpy as np # Generic object that can be added, but doesn't do anything else -class GenericObject: +class GenericObject(object): def __init__(self, v): self.v = v |