diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2011-03-28 09:44:45 +0300 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2011-03-28 09:46:07 +0300 |
commit | 96ac357b2891cc87e342cfc986be4025410b295b (patch) | |
tree | 9031f6527fedb64b36c994d5a112d672cb6d2251 /numpy/f2py/func2subr.py | |
parent | 225f28c7cffc2ec4914cf34b9abf6c121cb990a8 (diff) | |
download | numpy-96ac357b2891cc87e342cfc986be4025410b295b.tar.gz |
BUG: Fix f2py function wrapping (assumed_shape test) for gcc 4.5.x.
Diffstat (limited to 'numpy/f2py/func2subr.py')
-rw-r--r-- | numpy/f2py/func2subr.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/numpy/f2py/func2subr.py b/numpy/f2py/func2subr.py index 02401d504..4114cf831 100644 --- a/numpy/f2py/func2subr.py +++ b/numpy/f2py/func2subr.py @@ -124,9 +124,7 @@ def createfuncwrapper(rout,signature=0): add('subroutine f2pywrap%s (%s)'%(name,sargs)) if not need_interface: add('external %s'%(fortranname)) - #if not return_char_star: - l = l + ', '+fortranname - + l = l + ', '+fortranname if need_interface: for line in rout['saved_interface'].split('\n'): if line.lstrip().startswith('use '): |