diff options
author | David Stansby <dstansby@gmail.com> | 2019-10-11 16:46:33 +0100 |
---|---|---|
committer | David Stansby <dstansby@gmail.com> | 2019-10-11 16:46:33 +0100 |
commit | fd4e07fb14aaf359a36a265030ee16cea0834b03 (patch) | |
tree | d4b4034de630fb5e1e09b088fc84bd9b500f7bb0 /doc/source/f2py | |
parent | b32e16eb2d4d1dd13b68f5d110dc7a4f9dce4eee (diff) | |
download | numpy-fd4e07fb14aaf359a36a265030ee16cea0834b03.tar.gz |
Add intersphinx links
Diffstat (limited to 'doc/source/f2py')
-rw-r--r-- | doc/source/f2py/distutils.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/f2py/distutils.rst b/doc/source/f2py/distutils.rst index fdcd38468..71f6eab5a 100644 --- a/doc/source/f2py/distutils.rst +++ b/doc/source/f2py/distutils.rst @@ -26,7 +26,7 @@ sources, call F2PY to construct extension modules, etc. :mod:`numpy.distutils` extends ``distutils`` with the following features: -* ``Extension`` class argument ``sources`` may contain Fortran source +* :class:`Extension` class argument ``sources`` may contain Fortran source files. In addition, the list ``sources`` may contain at most one F2PY signature file, and then the name of an Extension module must match with the ``<modulename>`` used in signature file. It is @@ -37,7 +37,7 @@ sources, call F2PY to construct extension modules, etc. to scan Fortran source files for routine signatures to construct the wrappers to Fortran codes. - Additional options to F2PY process can be given using ``Extension`` + Additional options to F2PY process can be given using :class:`Extension` class argument ``f2py_options``. * The following new ``distutils`` commands are defined: |