diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2011-04-05 14:12:16 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2011-04-05 14:12:16 -0600 |
commit | 85ed5d0cdf876aa2de9c30a68f9617c8b632f34a (patch) | |
tree | d7d25d7f2ca8f72f4b10ee61f933bd1b486b7915 /numpy | |
parent | 2812406e48a7ffa011dc60ed37dda6131c08ae3d (diff) | |
download | numpy-85ed5d0cdf876aa2de9c30a68f9617c8b632f34a.tar.gz |
STY: Change one more old-style class to a new-style class.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/tests/test_ufunc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_ufunc.py b/numpy/core/tests/test_ufunc.py index a7a41dfe2..070ae42f2 100644 --- a/numpy/core/tests/test_ufunc.py +++ b/numpy/core/tests/test_ufunc.py @@ -119,7 +119,7 @@ class TestUfunc(TestCase): assert_almost_equal(ftwo(x,x), ftwo_val, err_msg=msg) # class to use in testing object method loops - class foo : + class foo(object): def logical_not(self) : return np.bool_(1) def logical_and(self, obj) : |