diff options
author | Pierre de Buyl <pdebuyl@pdebuyl.be> | 2016-09-05 22:24:34 +0200 |
---|---|---|
committer | Pierre de Buyl <pdebuyl@pdebuyl.be> | 2016-09-06 11:20:19 +0200 |
commit | 773e3cad9a71cb9a7849d8e251fb8a99ab35d06b (patch) | |
tree | 793dab9410558a21622d6e6b948d0491997cc54c /doc/source/f2py/signature-file.rst | |
parent | adc155e12648256eea754d1d53e8322e3ac19549 (diff) | |
download | numpy-773e3cad9a71cb9a7849d8e251fb8a99ab35d06b.tar.gz |
change all non-code instances of Numpy to NumPy
Instances remain for NumpyVersion and Numpy.rec.fromarrays that are
references to code.
Release notes were left unchanged.
see issue #7986
Diffstat (limited to 'doc/source/f2py/signature-file.rst')
-rw-r--r-- | doc/source/f2py/signature-file.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/f2py/signature-file.rst b/doc/source/f2py/signature-file.rst index a8924712f..6afcdeb8c 100644 --- a/doc/source/f2py/signature-file.rst +++ b/doc/source/f2py/signature-file.rst @@ -348,9 +348,9 @@ The following attributes are used by F2PY: + ``inout`` The argument is considered as an input/output or *in situ* output argument. ``intent(inout)`` arguments can be only - "contiguous" Numpy arrays with proper type and size. Here + "contiguous" NumPy arrays with proper type and size. Here "contiguous" can be either in Fortran or C sense. The latter one - coincides with the contiguous concept used in Numpy and is + coincides with the contiguous concept used in NumPy and is effective only if ``intent(c)`` is used. Fortran contiguity is assumed by default. @@ -360,7 +360,7 @@ The following attributes are used by F2PY: + ``inplace`` The argument is considered as an input/output or *in situ* output argument. ``intent(inplace)`` arguments must be - Numpy arrays with proper size. If the type of an array is + NumPy arrays with proper size. If the type of an array is not "proper" or the array is non-contiguous then the array will be changed in-place to fix the type and make it contiguous. |