[SciPy-user] F2PY: Problems after upgrading to Python2.6

Benjamin Kern kern at mpi-magdeburg.mpg.de
Tue Nov 4 12:22:36 EST 2008


Hello,

i'm experiencing strange problems after upgrading to python2.6. I'm
also using numpy-svn and scipy-svn. So here is the problem. When i try
to wrap the following simple fortran code,
C File hello.f
      subroutine foo (a)
      integer a
      print*, "Hello from Fortran!"
      print*, "a=",a
      end
I have problems executing this from python, i.e.

>>> import hello
>>> print hello.__doc__
This module 'hello' is auto-generated with f2py (version:2_5968).
Functions:
  foo(a)
.
>>> print hello.foo.__doc__
foo - Function signature:
  foo(a)
Required arguments:
  a : input int

>>> hello.foo(4)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
RuntimeError: more argument specifiers than keyword list entries
(remaining format:'|:hello.foo')

Thanks for the help in advance



More information about the SciPy-User mailing list