diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-20 12:06:58 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-20 12:06:58 (GMT) |
commit | e724665182535b69fb0eb9e2ea3caa00f14dc392 (patch) | |
tree | 487df59974c24a550f5c356d6f653b24a8b64d02 /Doc/c-api | |
parent | 86c54f0955690b560aa1f4bf23074d7256b5c447 (diff) | |
parent | da5b852c7ccc6486df1e7d36862441448cad37f7 (diff) | |
download | cpython-e724665182535b69fb0eb9e2ea3caa00f14dc392.zip cpython-e724665182535b69fb0eb9e2ea3caa00f14dc392.tar.gz cpython-e724665182535b69fb0eb9e2ea3caa00f14dc392.tar.bz2 |
#12072: merge with 3.2.
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. |