diff options
author | Alan McIntyre <alan.mcintyre@local> | 2008-09-13 03:40:57 +0000 |
---|---|---|
committer | Alan McIntyre <alan.mcintyre@local> | 2008-09-13 03:40:57 +0000 |
commit | e091c840e101eb620307747e0e4cd1b939d8abe6 (patch) | |
tree | 378e691843fe1d56e224266b0c8e5478e1327433 /numpy/numarray/alter_code2.py | |
parent | b1e2466272fa0c2ee08701c3d86a03088218b69e (diff) | |
download | numpy-e091c840e101eb620307747e0e4cd1b939d8abe6.tar.gz |
Removed unused/duplicate imports.
Removed repeated members of __all__.
Fixed reference to undefined "out" in functions.py:take function.
Fixed references to undefined "N" in functions.py.
Rewrapped lines to conform to PEP8.
Fixed references to undefined FPE_* constants (from numpy) in util.py.
Diffstat (limited to 'numpy/numarray/alter_code2.py')
-rw-r--r-- | numpy/numarray/alter_code2.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/numpy/numarray/alter_code2.py b/numpy/numarray/alter_code2.py index 87ec5aa07..4bb773850 100644 --- a/numpy/numarray/alter_code2.py +++ b/numpy/numarray/alter_code2.py @@ -12,12 +12,9 @@ import warnings warnings.warn("numpy.numarray.alter_code2 is not working yet.") import sys - import os -import re import glob - def makenewfile(name, filestr): fid = file(name, 'w') fid.write(filestr) |