diff options
author | David Cournapeau <cournape@gmail.com> | 2009-02-27 12:07:22 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-02-27 12:07:22 +0000 |
commit | 17e2f03173f00ed7caa87fff0d1cbeb83b95f20c (patch) | |
tree | ea56ef2f5fcec9c3deaf516e218b2572fb2ace43 | |
parent | 9e6abf01df0ae54125678e3b02f29837285e56b7 (diff) | |
download | numpy-17e2f03173f00ed7caa87fff0d1cbeb83b95f20c.tar.gz |
Remove unused iswin64 in multiarray unit test.
-rw-r--r-- | numpy/core/tests/test_multiarray.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/core/tests/test_multiarray.py b/numpy/core/tests/test_multiarray.py index 0371c0c80..7bc9875ab 100644 --- a/numpy/core/tests/test_multiarray.py +++ b/numpy/core/tests/test_multiarray.py @@ -7,10 +7,6 @@ from numpy.core import * from test_print import in_foreign_locale -def iswin64(): - import platform - return platform.architecture()[0] == "64bit" and sys.platform == "win32" - class TestFlags(TestCase): def setUp(self): self.a = arange(10) |