blob: bfad55fb743c00beb80c0cc84d770e0795f80f3d (
plain)
1
2
3
4
5
6
7
|
F2PY supports the value attribute
---------------------------------
The Fortran standard requires that variables declared with the ``value``
attribute must be passed by value instead of reference. F2PY now supports this
use pattern correctly. So ``integer, intent(in), value :: x`` in Fortran codes
will have correct wrappers generated.
|