diff options
author | Travis Oliphant <oliphant@enthought.com> | 2009-08-28 14:58:59 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2009-08-28 14:58:59 +0000 |
commit | c2191bc97da8a0879cec8d3e9a7a93fe9e66fcd8 (patch) | |
tree | c2783eb645cc283dc5c336f08125fbe64367de10 /numpy/lib | |
parent | 5bebcdfd6cda1d015f52e213bf94cfdc5b0b8b98 (diff) | |
download | numpy-c2191bc97da8a0879cec8d3e9a7a93fe9e66fcd8.tar.gz |
Datetime branch compiles and all numpy tests pass. Ready to be merged back to trunk. More development still needed, but it can take place in the trunk.
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/tests/test_arrayterator.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/lib/tests/test_arrayterator.py b/numpy/lib/tests/test_arrayterator.py index 421569651..c600d45eb 100644 --- a/numpy/lib/tests/test_arrayterator.py +++ b/numpy/lib/tests/test_arrayterator.py @@ -41,3 +41,7 @@ def test(): # Check that all elements are iterated correctly assert list(c.flat) == list(d.flat) + +if __name__ == '__main__': + from numpy.testing import run_module_suite + run_module_suite() |