diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2010-03-24 18:18:43 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2010-03-24 18:18:43 +0000 |
commit | 44118aedbac7c1c4465443ec23d104a83b9a24f9 (patch) | |
tree | 6ddd66c9815035624597d58d39b53616fee56ee4 /tools/py3tool.py | |
parent | 3ec490dabbd7c18b55947df1a89f042bb44d3911 (diff) | |
download | numpy-44118aedbac7c1c4465443ec23d104a83b9a24f9.tar.gz |
Rename numpy/lib/io.py to numpy/lib/npyio.py. The py3tool can probably be
cleaned up a bit more with this change, but that is for later.
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() |