summaryrefslogtreecommitdiff
path: root/numpy/f2py/tests/test_callback.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/f2py/tests/test_callback.py')
-rw-r--r--numpy/f2py/tests/test_callback.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/tests/test_callback.py b/numpy/f2py/tests/test_callback.py
index 7f0107fd5..6a201a951 100644
--- a/numpy/f2py/tests/test_callback.py
+++ b/numpy/f2py/tests/test_callback.py
@@ -59,7 +59,7 @@ cf2py intent(out) a
assert_( r==11,`r`)
r = t(self.module.func0._cpointer)
assert_( r==11,`r`)
- class A:
+ class A(object):
def __call__(self):
return 7
def mth(self):