From 1b9e76ed3a055a53ca67397e928e1b408461900b Mon Sep 17 00:00:00 2001 From: vyas45 Date: Sun, 15 Oct 2017 00:31:36 -0700 Subject: bpo-31754: Fix type of 'itemsize' in PyBuffer_FillContiguousStrides (GH-3993) --- Doc/c-api/buffer.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12