summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2014-06-25 03:38:06 (GMT)
committerJesus Cea <jcea@jcea.es>2014-06-25 03:38:06 (GMT)
commitca5c7153de0e14052483676b2cdf6791f1eeb7d2 (patch)
treeeb2e2423a1eca2b113c0ae34c2ca392d74c54584
parentc5a72e6971b2927aa5fbfa6d7e02f6018b989768 (diff)
parente8ef8b7a2095fdca3c16c1166b9c071dede55e22 (diff)
downloadcpython-ca5c7153de0e14052483676b2cdf6791f1eeb7d2.zip
cpython-ca5c7153de0e14052483676b2cdf6791f1eeb7d2.tar.gz
cpython-ca5c7153de0e14052483676b2cdf6791f1eeb7d2.tar.bz2
MERGE: Closes #21441: Reorder elements in documentation to match actual order in the code
-rw-r--r--Doc/c-api/buffer.rst20
1 files changed, 10 insertions, 10 deletions
diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst
index f703e9c..a7de37e 100644
--- a/Doc/c-api/buffer.rst
+++ b/Doc/c-api/buffer.rst
@@ -89,6 +89,16 @@ a buffer, see :c:func:`PyObject_GetBuffer`.
.. c:type:: Py_buffer
+ .. c:member:: void \*buf
+
+ A pointer to the start of the logical structure described by the buffer
+ fields. This can be any location within the underlying physical memory
+ block of the exporter. For example, with negative :c:member:`~Py_buffer.strides`
+ the value may point to the end of the memory block.
+
+ For contiguous arrays, the value points to the beginning of the memory
+ block.
+
.. c:member:: void \*obj
A new reference to the exporting object. The reference is owned by
@@ -101,16 +111,6 @@ a buffer, see :c:func:`PyObject_GetBuffer`.
this field is *NULL*. In general, exporting objects MUST NOT
use this scheme.
- .. c:member:: void \*buf
-
- A pointer to the start of the logical structure described by the buffer
- fields. This can be any location within the underlying physical memory
- block of the exporter. For example, with negative :c:member:`~Py_buffer.strides`
- the value may point to the end of the memory block.
-
- For contiguous arrays, the value points to the beginning of the memory
- block.
-
.. c:member:: Py_ssize_t len
``product(shape) * itemsize``. For contiguous arrays, this is the length