From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 19 Jun 2025 07:18:00 +0000 (+0200) Subject: [3.13] Document that PyType_GetModuleByDef returns a borrowed reference (GH-135666... X-Git-Tag: v3.13.6~197 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=773ca09caa3be3e771ed241a8910ccd1581ba3e2;p=thirdparty%2FPython%2Fcpython.git [3.13] Document that PyType_GetModuleByDef returns a borrowed reference (GH-135666) (GH-135702) (cherry picked from commit 140731ff671395fb7a869c2784429c14dc83fb27) Co-authored-by: Petr Viktorin --- diff --git a/Doc/c-api/type.rst b/Doc/c-api/type.rst index be87b689fa1c..1b69d6d22326 100644 --- a/Doc/c-api/type.rst +++ b/Doc/c-api/type.rst @@ -267,6 +267,10 @@ Type Objects and other places where a method's defining class cannot be passed using the :c:type:`PyCMethod` calling convention. + The returned reference is :term:`borrowed ` from *type*, + and will be valid as long as you hold a reference to *type*. + Do not release it with :c:func:`Py_DECREF` or similar. + .. versionadded:: 3.11 .. c:function:: int PyUnstable_Type_AssignVersionTag(PyTypeObject *type) diff --git a/Doc/data/refcounts.dat b/Doc/data/refcounts.dat index 042cae5f18ab..ae24ae5ba812 100644 --- a/Doc/data/refcounts.dat +++ b/Doc/data/refcounts.dat @@ -2371,6 +2371,10 @@ PyType_GetFlags:PyTypeObject*:type:0: PyType_GetName:PyObject*::+1: PyType_GetName:PyTypeObject*:type:0: +PyType_GetModuleByDef:PyObject*::0: +PyType_GetModuleByDef:PyTypeObject*:type:0: +PyType_GetModuleByDef:PyModuleDef*:def:: + PyType_GetQualName:PyObject*::+1: PyType_GetQualName:PyTypeObject*:type:0: