diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-14 23:15:21 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-14 23:15:21 +0000 |
commit | f77587b2cd9091a99a31bb0d5f99c57cc077aa8e (patch) | |
tree | 8894af7b880beece61903e47dd84c7205e3ee8d3 /numpy/testing/numpytest.py | |
parent | 06acb9555bf64997423b124620fb469cab24cb2b (diff) | |
download | numpy-f77587b2cd9091a99a31bb0d5f99c57cc077aa8e.tar.gz |
Fix Python 2.5 compatibility to work with new b3 release
Diffstat (limited to 'numpy/testing/numpytest.py')
-rw-r--r-- | numpy/testing/numpytest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/testing/numpytest.py b/numpy/testing/numpytest.py index c07124753..74b7c1a1e 100644 --- a/numpy/testing/numpytest.py +++ b/numpy/testing/numpytest.py @@ -452,6 +452,8 @@ class NumpyTest: continue modules.append(module) + + self.test_files = [] suites = [] for module in modules: |