diff options
Diffstat (limited to 'scipy/f2py/doc/f2python9-final/src/examples/foo.pyf')
-rw-r--r-- | scipy/f2py/doc/f2python9-final/src/examples/foo.pyf | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scipy/f2py/doc/f2python9-final/src/examples/foo.pyf b/scipy/f2py/doc/f2python9-final/src/examples/foo.pyf new file mode 100644 index 000000000..516bb292f --- /dev/null +++ b/scipy/f2py/doc/f2python9-final/src/examples/foo.pyf @@ -0,0 +1,13 @@ +!%f90 -*- f90 -*- +python module foo + interface + subroutine exp1(l,u,n) + real*8 dimension(2) :: l + real*8 dimension(2) :: u + integer*4 :: n + end subroutine exp1 + end interface +end python module foo +! This file was auto-generated with f2py +! (version:2.298). +! See http://cens.ioc.ee/projects/f2py2e/ |