summaryrefslogtreecommitdiff
path: root/numpy/doc/swig/test/testArray.py
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2008-08-12 18:46:31 +0000
committerStefan van der Walt <stefan@sun.ac.za>2008-08-12 18:46:31 +0000
commit96a6fcc6218e2487662706ad646194c8c22b8cc6 (patch)
tree7ca2e7083955f3b8a38ebb43312e455be161aac1 /numpy/doc/swig/test/testArray.py
parent04a0ee16539077c6693f4fb36e388a3aa77e9ac2 (diff)
downloadnumpy-96a6fcc6218e2487662706ad646194c8c22b8cc6.tar.gz
Correctly handle Fortran-contiguous arrays in SWIG wrappers.
Diffstat (limited to 'numpy/doc/swig/test/testArray.py')
-rwxr-xr-xnumpy/doc/swig/test/testArray.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/doc/swig/test/testArray.py b/numpy/doc/swig/test/testArray.py
index 9a1fc510b..ba83d14d9 100755
--- a/numpy/doc/swig/test/testArray.py
+++ b/numpy/doc/swig/test/testArray.py
@@ -14,10 +14,6 @@ if major == 0:
else:
BadListError = ValueError
-# Add the distutils-generated build directory to the python search path and then
-# import the extension module
-libDir = "lib.%s-%s" % (get_platform(), sys.version[:3])
-sys.path.insert(0,os.path.join("build", libDir))
import Array
######################################################################