diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-07-25 22:38:27 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-07-25 23:18:23 -0600 |
commit | b80d1f979efb528e855263a38b389cebd3eb90e1 (patch) | |
tree | e0db4e5367b504971e4456f6a6286437dfff8812 /numpy/f2py/common_rules.py | |
parent | e81b9eee676102fbd1c1c2916764e6ce71bac793 (diff) | |
download | numpy-b80d1f979efb528e855263a38b389cebd3eb90e1.tar.gz |
STY: Make pyflakes fixes in numpy/f2py
Diffstat (limited to 'numpy/f2py/common_rules.py')
-rw-r--r-- | numpy/f2py/common_rules.py | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/numpy/f2py/common_rules.py b/numpy/f2py/common_rules.py index d3b7f6dc2..0a4644465 100644 --- a/numpy/f2py/common_rules.py +++ b/numpy/f2py/common_rules.py @@ -20,17 +20,12 @@ __version__ = "$Revision: 1.19 $"[10:-1] from . import __version__ f2py_version = __version__.version -import pprint -import sys -errmess=sys.stderr.write -outmess=sys.stdout.write -show=pprint.pprint - -from .auxfuncs import * +from .auxfuncs import ( + hasbody, hascommon, hasnote, isintent_hide, outmess +) from . import capi_maps from . import func2subr from .crackfortran import rmbadname -############## def findcommonblocks(block,top=1): ret = [] |