From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 5 Nov 2024 10:01:37 +0000 (+0100) Subject: [3.12] Doc: C API: Delete claim that `PyObject_Init` is GC-aware (GH-126418) (#126432) X-Git-Tag: v3.12.8~110 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa5498d466957215704d85b99e7cc01103d783da;p=thirdparty%2FPython%2Fcpython.git [3.12] Doc: C API: Delete claim that `PyObject_Init` is GC-aware (GH-126418) (#126432) Doc: C API: Delete claim that `PyObject_Init` is GC-aware (GH-126418) (cherry picked from commit 407c0366d9ccd2a36c6cc8bf92324856b16fd604) Co-authored-by: Richard Hansen --- diff --git a/Doc/c-api/allocation.rst b/Doc/c-api/allocation.rst index b3609c233156..e6ff40ab46e7 100644 --- a/Doc/c-api/allocation.rst +++ b/Doc/c-api/allocation.rst @@ -15,10 +15,8 @@ Allocating Objects on the Heap .. c:function:: PyObject* PyObject_Init(PyObject *op, PyTypeObject *type) Initialize a newly allocated object *op* with its type and initial - reference. Returns the initialized object. If *type* indicates that the - object participates in the cyclic garbage detector, it is added to the - detector's set of observed objects. Other fields of the object are not - affected. + reference. Returns the initialized object. Other fields of the object are + not affected. .. c:function:: PyVarObject* PyObject_InitVar(PyVarObject *op, PyTypeObject *type, Py_ssize_t size)