General adjustment of interfaces to Fortran

Function with multiple input and output variables
subroutine somef(i1, i2, o1, o2, o3, o4, io1)
input: i1, i2
output: o1, ..., o4
input and output: io1
Pythonic interface, as generated by F2PY:
o1, o2, o3, o4, io1 = somef(i1, i2, io1)

previousnexttable of contents