diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-07-29 14:12:32 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-07-29 14:12:32 -0600 |
commit | d676616cb5ddde980734e2b60569a69912983940 (patch) | |
tree | 749f0599e852adc6d59fdc676e15e1b6262e4d4b /numpy/f2py/func2subr.py | |
parent | 0fa1a9fa0a54fce6e741333308bdafa83c0663b2 (diff) | |
download | numpy-d676616cb5ddde980734e2b60569a69912983940.tar.gz |
STY: Break some long lines in numpy/f2py/*.py.
The fixes are generated by autopep8, which uses line continuation.
There are 441 cases that it is unable to handle, involving strings, and
that is more, and more delicate, work than I want to do at this time.
The line continuation characters at least mark some of the long lines.
Diffstat (limited to 'numpy/f2py/func2subr.py')
-rw-r--r-- | numpy/f2py/func2subr.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/numpy/f2py/func2subr.py b/numpy/f2py/func2subr.py index 723d6508e..6010d5a23 100644 --- a/numpy/f2py/func2subr.py +++ b/numpy/f2py/func2subr.py @@ -180,9 +180,6 @@ def createfuncwrapper(rout, signature=0): add('end subroutine f2pywrap_%s_%s' % (rout['modulename'], name)) else: add('end') - # print '**'*10 - # print ret[0] - # print '**'*10 return ret[0] @@ -263,9 +260,6 @@ def createsubrwrapper(rout, signature=0): add('end subroutine f2pywrap_%s_%s' % (rout['modulename'], name)) else: add('end') - # print '**'*10 - # print ret[0] - # print '**'*10 return ret[0] |