diff options
author | mattip <matti.picus@gmail.com> | 2018-04-10 21:42:31 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-04-10 21:42:31 +0300 |
commit | c4996684e79ab8bbbd312ea4803286d226e95fd8 (patch) | |
tree | 39c6dee00ca1b9f785e16bc80ffdc041022eb4e1 /doc/source/f2py | |
parent | a75e76dac26fcf56ab815926b89bb9a9bc358608 (diff) | |
download | numpy-c4996684e79ab8bbbd312ea4803286d226e95fd8.tar.gz |
silence warnings, matplotlib deprecated normed in favor of density
Diffstat (limited to 'doc/source/f2py')
-rw-r--r-- | doc/source/f2py/python-usage.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/f2py/python-usage.rst b/doc/source/f2py/python-usage.rst index 79860173b..60167d01a 100644 --- a/doc/source/f2py/python-usage.rst +++ b/doc/source/f2py/python-usage.rst @@ -215,7 +215,7 @@ Sometimes a Fortran package may require that users provide routines that the package will use. F2PY can construct an interface to such routines so that Python functions could be called from Fortran. -Consider the following `Fortran 77 subroutine`__ that takes an array +Consider the following Fortran 77 subroutine that takes an array and applies a function ``func`` to its elements. .. include:: calculate.f |