]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Note the buffer slots can be set with PyType_Spec with the unlimited API. (GH-22052)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 2 Sep 2020 03:18:21 +0000 (20:18 -0700)
committerGitHub <noreply@github.com>
Wed, 2 Sep 2020 03:18:21 +0000 (22:18 -0500)
Follow up to f7c4e236429606e1c982cacf24e10fc86ef4462f.
(cherry picked from commit 700fa1b836f315048e8b89ede5018a0c0a213946)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
Doc/c-api/type.rst

index f387279d143eecb235d0e96052805d1dcb14e672..030304de562b679a5ae10e792123f68916745ef4 100644 (file)
@@ -215,7 +215,8 @@ The following functions and structs are used to create
       * ``Py_nb_add`` to set :c:member:`PyNumberMethods.nb_add`
       * ``Py_sq_length`` to set :c:member:`PySequenceMethods.sq_length`
 
-      The following fields cannot be set using :c:type:`PyType_Spec` and :c:type:`PyType_Slot`:
+      The following fields cannot be set at all using :c:type:`PyType_Spec` and
+      :c:type:`PyType_Slot`:
 
       * :c:member:`~PyTypeObject.tp_dict`
       * :c:member:`~PyTypeObject.tp_mro`
@@ -229,6 +230,10 @@ The following functions and structs are used to create
         (see :ref:`PyMemberDef <pymemberdef-offsets>`)
       * :c:member:`~PyTypeObject.tp_vectorcall_offset`
         (see :ref:`PyMemberDef <pymemberdef-offsets>`)
+
+      The following fields cannot be set using :c:type:`PyType_Spec` and
+      :c:type:`PyType_Slot` under the limited API:
+
       * :c:member:`~PyBufferProcs.bf_getbuffer`
       * :c:member:`~PyBufferProcs.bf_releasebuffer`
 
@@ -236,6 +241,10 @@ The following functions and structs are used to create
       To avoid issues, use the *bases* argument of
       :py:func:`PyType_FromSpecWithBases` instead.
 
+     .. versionchanged:: 3.9
+
+        Slots in :c:type:`PyBufferProcs` in may be set in the unlimited API.
+
    .. c:member:: void *PyType_Slot.pfunc
 
       The desired value of the slot. In most cases, this is a pointer