]> granicus.if.org Git - python/commitdiff
Closes #21441: Reorder elements in documentation to match actual order in the code
authorJesus Cea <jcea@jcea.es>
Wed, 25 Jun 2014 03:37:17 +0000 (05:37 +0200)
committerJesus Cea <jcea@jcea.es>
Wed, 25 Jun 2014 03:37:17 +0000 (05:37 +0200)
Doc/c-api/buffer.rst

index f703e9caf781b71f2bf7dbf990e4318cbbd87a77..a7de37ee5f50702d08f950284331267d90d4eb6e 100644 (file)
@@ -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