summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-02-27 12:07:22 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-02-27 12:07:22 +0000
commit17e2f03173f00ed7caa87fff0d1cbeb83b95f20c (patch)
treeea56ef2f5fcec9c3deaf516e218b2572fb2ace43
parent9e6abf01df0ae54125678e3b02f29837285e56b7 (diff)
downloadnumpy-17e2f03173f00ed7caa87fff0d1cbeb83b95f20c.tar.gz
Remove unused iswin64 in multiarray unit test.
-rw-r--r--numpy/core/tests/test_multiarray.py4
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)