diff options
author | gfyoung <gfyoung17@gmail.com> | 2015-12-20 01:08:29 -0800 |
---|---|---|
committer | gfyoung <gfyoung17@gmail.com> | 2015-12-20 01:08:29 -0800 |
commit | 0574f62bf58eada5860fe0620151aede85a8dae4 (patch) | |
tree | 03c72921d245369a4e4042344fe877fc05e8583b /numpy/f2py | |
parent | 144c34b8ecd051e05a93c6268290eadb1827afb0 (diff) | |
download | numpy-0574f62bf58eada5860fe0620151aede85a8dae4.tar.gz |
MAINT: Remove commented out code blocks
Diffstat (limited to 'numpy/f2py')
-rw-r--r-- | numpy/f2py/auxfuncs.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/f2py/auxfuncs.py b/numpy/f2py/auxfuncs.py index 289102e5a..d27b95947 100644 --- a/numpy/f2py/auxfuncs.py +++ b/numpy/f2py/auxfuncs.py @@ -430,9 +430,6 @@ def isintent_nothide(var): def isintent_c(var): return 'c' in var.get('intent', []) -# def isintent_f(var): -# return not isintent_c(var) - def isintent_cache(var): return 'cache' in var.get('intent', []) @@ -673,7 +670,6 @@ def getcallprotoargument(rout, cb_map={}): proto_args = ','.join(arg_types + arg_types2) if not proto_args: proto_args = 'void' - # print(proto_args) return proto_args |