diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-20 12:06:32 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-20 12:06:32 (GMT) |
commit | da5b852c7ccc6486df1e7d36862441448cad37f7 (patch) | |
tree | 75d88994d2c26a3347cbbd4cb94ba290b350b4d9 /Doc/c-api | |
parent | 62a68f2dbe2c33c57d5840f38105dc11e33a77b7 (diff) | |
parent | 261d855fd6e67bfe04aaaabfaff27f091b6d008f (diff) | |
download | cpython-da5b852c7ccc6486df1e7d36862441448cad37f7.zip cpython-da5b852c7ccc6486df1e7d36862441448cad37f7.tar.gz cpython-da5b852c7ccc6486df1e7d36862441448cad37f7.tar.bz2 |
#12072: merge with 3.1.
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/buffer.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst index 5a34bc0..d98ece3 100644 --- a/Doc/c-api/buffer.rst +++ b/Doc/c-api/buffer.rst @@ -314,7 +314,7 @@ Buffer-related functions .. c:function:: void PyBuffer_FillContiguousStrides(int ndim, Py_ssize_t *shape, Py_ssize_t *strides, Py_ssize_t itemsize, char fortran) Fill the *strides* array with byte-strides of a contiguous (C-style if - *fortran* is ``'C'`` or Fortran-style if *fortran* is ``'F'`` array of the + *fortran* is ``'C'`` or Fortran-style if *fortran* is ``'F'``) array of the given shape with the given number of bytes per element. |