diff options
author | Benjamin Peterson <benjamin@python.org> | 2020-09-02 01:36:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-02 01:36:42 (GMT) |
commit | 700fa1b836f315048e8b89ede5018a0c0a213946 (patch) | |
tree | e7f90b9f5468d733a5df7f6d73cca753ae0b139d /Doc | |
parent | 17dc1b789ecc33b4a254eb3b799085f4b3624ca5 (diff) | |
download | cpython-700fa1b836f315048e8b89ede5018a0c0a213946.zip cpython-700fa1b836f315048e8b89ede5018a0c0a213946.tar.gz cpython-700fa1b836f315048e8b89ede5018a0c0a213946.tar.bz2 |
Note the buffer slots can be set with PyType_Spec with the unlimited API. (GH-22031)
Follow up to f7c4e236429606e1c982cacf24e10fc86ef4462f.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/type.rst | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Doc/c-api/type.rst b/Doc/c-api/type.rst index 7309d7e..73f2687 100644 --- a/Doc/c-api/type.rst +++ b/Doc/c-api/type.rst @@ -225,7 +225,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` @@ -239,6 +240,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` @@ -246,6 +251,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 |