diff options
author | Alan McIntyre <alan.mcintyre@local> | 2008-09-18 03:45:53 +0000 |
---|---|---|
committer | Alan McIntyre <alan.mcintyre@local> | 2008-09-18 03:45:53 +0000 |
commit | 95104b851ace0df9853451b0c3d146a0ce186ced (patch) | |
tree | 97a56d9bb1ed66ad9290e10fd62bf54855f9835c /numpy/f2py/cfuncs.py | |
parent | 3c6341f1c5f932018875fa461ae51310cb419e14 (diff) | |
download | numpy-95104b851ace0df9853451b0c3d146a0ce186ced.tar.gz |
Removed unused/redundant imports.
PEP8 conformance (only one import per line).
Diffstat (limited to 'numpy/f2py/cfuncs.py')
-rw-r--r-- | numpy/f2py/cfuncs.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/numpy/f2py/cfuncs.py b/numpy/f2py/cfuncs.py index a1e8ebff3..02462241c 100644 --- a/numpy/f2py/cfuncs.py +++ b/numpy/f2py/cfuncs.py @@ -19,7 +19,9 @@ __version__ = "$Revision: 1.75 $"[10:-1] import __version__ f2py_version = __version__.version -import types,sys,copy,os +import types +import sys +import copy errmess=sys.stderr.write ##################### Definitions ################## |