diff options
Diffstat (limited to 'tools/py3tool.py')
-rwxr-xr-x | tools/py3tool.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/py3tool.py b/tools/py3tool.py index 258484fc9..fbb540782 100755 --- a/tools/py3tool.py +++ b/tools/py3tool.py @@ -141,7 +141,7 @@ def custom_mangling(filename): os.path.join('core', 'arrayprint.py'), os.path.join('core', 'fromnumeric.py'), os.path.join('numpy', '__init__.py'), - os.path.join('lib', 'io.py'), + os.path.join('lib', 'npyio.py'), os.path.join('lib', 'function_base.py'), os.path.join('fft', 'fftpack.py'), os.path.join('random', '__init__.py'), @@ -166,7 +166,7 @@ def custom_mangling(filename): f.write(text) f.close() - if filename.endswith(os.path.join('lib', 'io.py')): + if filename.endswith(os.path.join('lib', 'npyio.py')): f = open(filename, 'r') text = f.read() f.close() |