From 3843e86ee3862103364b6aae2a0af8bd4ebdc986 Mon Sep 17 00:00:00 2001 From: Pauli Virtanen Date: Sat, 11 Sep 2010 14:52:07 +0000 Subject: BUG: core: fix _dotblas usage on Py3 (fixes #1609) --- tools/py3tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/py3tool.py') 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) -- cgit v1.2.1