diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2011-05-06 21:14:29 +0300 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2011-05-06 21:14:29 +0300 |
commit | 1f2e751b7752d1007e0e83d6d881b6d534f4f15e (patch) | |
tree | 15e3c1bdc573deb1714cd4c853c81fd94fcb777c /doc | |
parent | a859492c7b07dac0a56d9a08d6739e006a528f87 (diff) | |
download | numpy-1f2e751b7752d1007e0e83d6d881b6d534f4f15e.tar.gz |
DOC: Updated f2py size support note.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.6.0-notes.rst | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/doc/release/1.6.0-notes.rst b/doc/release/1.6.0-notes.rst index 8df8fa4cc..8cfdc6715 100644 --- a/doc/release/1.6.0-notes.rst +++ b/doc/release/1.6.0-notes.rst @@ -66,11 +66,8 @@ length arrays which caused unpredicted results. Thanks to Lorenz Hüdepohl for pointing out the correct way to interface routines with assumed shape arrays. -In addition, f2py interprets Fortran expression ``size(array, dim)`` -as ``shape(array, dim-1)`` which makes it possible to automatically -wrap Fortran routines that use two argument ``size`` function in -dimension specifications. Before users were forced to apply this -mapping manually. +In addition, f2py supports now automatic wrapping of Fortran routines +that use two argument ``size`` function in dimension specifications. Other new functions |