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/session.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/session.py')
-rw-r--r-- | numpy/numarray/session.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/numarray/session.py b/numpy/numarray/session.py index e1b079103..0982742ab 100644 --- a/numpy/numarray/session.py +++ b/numpy/numarray/session.py @@ -16,7 +16,6 @@ First, some unfortunate (probably unnecessary) concessions to doctest to keep the test run free of warnings. >>> del _PROXY_ALLOWED ->>> del copy >>> del __builtins__ By default, save() stores every variable in the caller's namespace: @@ -76,7 +75,6 @@ which is not restored by a simple import is lost. __all__ = ['load', 'save'] -import copy import sys import pickle |