summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPauli Virtanen <pav@iki.fi>2010-09-11 14:52:07 +0000
committerPauli Virtanen <pav@iki.fi>2010-09-11 14:52:07 +0000
commit3843e86ee3862103364b6aae2a0af8bd4ebdc986 (patch)
tree0f2906511908ec36e45cf80ce2ae247aaace08e9 /tools
parentb74533baef2a88255e36e680f5dba5c0f9dd4f7b (diff)
downloadnumpy-3843e86ee3862103364b6aae2a0af8bd4ebdc986.tar.gz
BUG: core: fix _dotblas usage on Py3 (fixes #1609)
Diffstat (limited to 'tools')
-rwxr-xr-xtools/py3tool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/py3tool.py b/tools/py3tool.py
index 5d10f9591..09fe87442 100755
--- a/tools/py3tool.py
+++ b/tools/py3tool.py
@@ -157,7 +157,7 @@ def custom_mangling(filename):
for mod in ['multiarray', 'scalarmath', 'umath', '_sort',
'_compiled_base', 'core', 'lib', 'testing', 'fft',
'polynomial', 'random', 'ma', 'linalg', 'compat',
- 'mtrand']:
+ 'mtrand', '_dotblas']:
text = re.sub(r'^(\s*)import %s' % mod,
r'\1from . import %s' % mod,
text, flags=re.M)