diff options
author | Pauli Virtanen <pav@iki.fi> | 2014-01-02 23:25:19 +0200 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2014-01-02 23:25:19 +0200 |
commit | 31f50a81974319a470cd6e913ef914f3e54f2390 (patch) | |
tree | 565f1be19df1850be3d60fdac88d4d64c0799e33 /doc/source/f2py | |
parent | def9fda423c0dafc3720870f3d83a0f02d5ac2c2 (diff) | |
download | numpy-31f50a81974319a470cd6e913ef914f3e54f2390.tar.gz |
DOC: f2py: minor fixups
Diffstat (limited to 'doc/source/f2py')
-rw-r--r-- | doc/source/f2py/distutils.rst | 6 | ||||
-rw-r--r-- | doc/source/f2py/index.rst | 3 | ||||
-rw-r--r-- | doc/source/f2py/python-usage.rst | 4 |
3 files changed, 6 insertions, 7 deletions
diff --git a/doc/source/f2py/distutils.rst b/doc/source/f2py/distutils.rst index 30debf824..d711d46a9 100644 --- a/doc/source/f2py/distutils.rst +++ b/doc/source/f2py/distutils.rst @@ -1,6 +1,6 @@ -============================ -Using via``numpy_distutils`` -============================ +============================= +Using via ``numpy_distutils`` +============================= ``numpy_distutils`` is part of the SciPy_ project and aims to extend standard Python ``distutils`` to deal with Fortran sources and F2PY diff --git a/doc/source/f2py/index.rst b/doc/source/f2py/index.rst index b4dd73d32..0cebbfd16 100644 --- a/doc/source/f2py/index.rst +++ b/doc/source/f2py/index.rst @@ -7,8 +7,7 @@ :Author: Pearu Peterson :Contact: pearu@cens.ioc.ee :Web site: http://cens.ioc.ee/projects/f2py2e/ -:Date: $Date: 2005/04/02 10:03:26 $ -:Revision: $Revision: 1.27 $ +:Date: 2005/04/02 10:03:26 ================ Introduction diff --git a/doc/source/f2py/python-usage.rst b/doc/source/f2py/python-usage.rst index 809634b40..179df54d8 100644 --- a/doc/source/f2py/python-usage.rst +++ b/doc/source/f2py/python-usage.rst @@ -2,8 +2,8 @@ Using F2PY bindings in Python ================================== -All wrappers (to Fortran/C routines or to common blocks or to Fortran -90 module data) generated by F2PY are exposed to Python as ``fortran`` +All wrappers for Fortran/C routines, common blocks, or for Fortran +90 module data generated by F2PY are exposed to Python as ``fortran`` type objects. Routine wrappers are callable ``fortran`` type objects while wrappers to Fortran data have attributes referring to data objects. |