summaryrefslogtreecommitdiff
path: root/numpy/numarray/util.py
diff options
context:
space:
mode:
authorPauli Virtanen <pav@iki.fi>2010-02-21 02:50:19 +0000
committerPauli Virtanen <pav@iki.fi>2010-02-21 02:50:19 +0000
commit15b39a5b04458c490dc2b46666ba4ee6d816d082 (patch)
tree5a90b29c1df2d5eb6bf699ec4fb5cea6f98574c8 /numpy/numarray/util.py
parente975168a90027794be99e221b33e8a4a94bdf434 (diff)
downloadnumpy-15b39a5b04458c490dc2b46666ba4ee6d816d082.tar.gz
3K: ENH: move numarray includes under numarray/include so that the 'numpy' directory does not confuse 2to3's relative import conversion
Diffstat (limited to 'numpy/numarray/util.py')
-rw-r--r--numpy/numarray/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/numarray/util.py b/numpy/numarray/util.py
index 3f0fc20d0..64a3f1711 100644
--- a/numpy/numarray/util.py
+++ b/numpy/numarray/util.py
@@ -35,5 +35,5 @@ def handleError(errorStatus, sourcemsg):
def get_numarray_include_dirs():
base = os.path.dirname(numpy.__file__)
- newdirs = [os.path.join(base, 'numarray')]
+ newdirs = [os.path.join(base, 'numarray', 'include')]
return newdirs