diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2009-01-06 10:09:00 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2009-01-06 10:09:00 +0000 |
commit | 4ec7a628f9e35a1dfcc5ab2a3c89f15006f6353d (patch) | |
tree | 9082f443562acbc46905f0412e8c932eb20fd7de /numpy/lib/tests/test_io.py | |
parent | 70c84a8cd4401a3e80648af5eea4aa1485a986d5 (diff) | |
download | numpy-4ec7a628f9e35a1dfcc5ab2a3c89f15006f6353d.tar.gz |
Use new-style classes with multiple-inheritance to address bug in IronPython.
Diffstat (limited to 'numpy/lib/tests/test_io.py')
-rw-r--r-- | numpy/lib/tests/test_io.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_io.py b/numpy/lib/tests/test_io.py index aee727efa..6ccfa818c 100644 --- a/numpy/lib/tests/test_io.py +++ b/numpy/lib/tests/test_io.py @@ -8,7 +8,7 @@ import sys MAJVER, MINVER = sys.version_info[:2] -class RoundtripTest: +class RoundtripTest(object): def roundtrip(self, save_func, *args, **kwargs): """ save_func : callable |