diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-10-15 07:37:07 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-10-15 07:37:07 (GMT) |
commit | e881302b70ab36bafcf37e3917be118bbec97763 (patch) | |
tree | 8341d23ff0a43460e2012f878c302a6f081ae281 | |
parent | 59b5c139d2ae95b1d1da63f81c3d777932215533 (diff) | |
download | cpython-e881302b70ab36bafcf37e3917be118bbec97763.zip cpython-e881302b70ab36bafcf37e3917be118bbec97763.tar.gz cpython-e881302b70ab36bafcf37e3917be118bbec97763.tar.bz2 |
[3.6] bpo-31754: Fix type of 'itemsize' in PyBuffer_FillContiguousStrides (GH-3993)
(cherry picked from commit 1b9e76ed3a055a53ca67397e928e1b408461900b)
-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 3d851b7..8c2de96 100644 --- a/Doc/c-api/buffer.rst +++ b/Doc/c-api/buffer.rst @@ -473,7 +473,7 @@ Buffer-related functions (*order* is ``'A'``). Return ``0`` otherwise. -.. c:function:: void PyBuffer_FillContiguousStrides(int ndim, Py_ssize_t *shape, Py_ssize_t *strides, Py_ssize_t itemsize, char order) +.. c:function:: void PyBuffer_FillContiguousStrides(int ndims, Py_ssize_t *shape, Py_ssize_t *strides, int itemsize, char order) Fill the *strides* array with byte-strides of a :term:`contiguous` (C-style if *order* is ``'C'`` or Fortran-style if *order* is ``'F'``) array of the |