tmp
/
pip-install-ghxuqwgs
/numpy_78e94bf2b6094bf9a1f3d92042f9bf46
/doc
/source
/f2py
/extcallback.f
subroutine f1() | |
print *, "in f1, calling f2 twice.." | |
call f2() | |
call f2() | |
return | |
end | |
subroutine f2() | |
cf2py intent(callback, hide) fpy | |
external fpy | |
print *, "in f2, calling f2py.." | |
call fpy() | |
return | |
end | |