diff options
author | Pauli Virtanen <pav@iki.fi> | 2010-09-11 14:52:07 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2010-09-11 14:52:07 +0000 |
commit | 3843e86ee3862103364b6aae2a0af8bd4ebdc986 (patch) | |
tree | 0f2906511908ec36e45cf80ce2ae247aaace08e9 /tools | |
parent | b74533baef2a88255e36e680f5dba5c0f9dd4f7b (diff) | |
download | numpy-3843e86ee3862103364b6aae2a0af8bd4ebdc986.tar.gz |
BUG: core: fix _dotblas usage on Py3 (fixes #1609)
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/py3tool.py | 2 |
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) |