]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-41726: Update the refcounts info of PyType_FromModuleAndSpec in refcounts.dat...
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 20 Oct 2020 12:30:04 +0000 (05:30 -0700)
committerGitHub <noreply@github.com>
Tue, 20 Oct 2020 12:30:04 +0000 (14:30 +0200)
Update refcounts info of PyType_FromModuleAndSpec in refcounts.dat
(cherry picked from commit 1e2f051a6127904cfee5f9e4021dd6e4a4d51c0f)

Co-authored-by: Hai Shi <shihai1992@gmail.com>
Doc/data/refcounts.dat
Misc/NEWS.d/next/Documentation/2020-09-08-16-57-09.bpo-41726.g0UXrn.rst [new file with mode: 0644]

index 4dacbe201d22a5bd079e4c605df67ffe0d6c00bb..aac135113ad7eb13ec513e5cb5092dfa96be4713 100644 (file)
@@ -2306,6 +2306,11 @@ PyType_CheckExact:PyObject*:o:0:
 PyType_FromSpec:PyObject*::+1:
 PyType_FromSpec:PyType_Spec*:spec::
 
+PyType_FromModuleAndSpec:PyObject*::+1:
+PyType_FromModuleAndSpec:PyObject*:module:+1:
+PyType_FromModuleAndSpec:PyType_Spec*:spec::
+PyType_FromModuleAndSpec:PyObject*:bases:0:
+
 PyType_FromSpecWithBases:PyObject*::+1:
 PyType_FromSpecWithBases:PyType_Spec*:spec::
 PyType_FromSpecWithBases:PyObject*:bases:0:
diff --git a/Misc/NEWS.d/next/Documentation/2020-09-08-16-57-09.bpo-41726.g0UXrn.rst b/Misc/NEWS.d/next/Documentation/2020-09-08-16-57-09.bpo-41726.g0UXrn.rst
new file mode 100644 (file)
index 0000000..1079a75
--- /dev/null
@@ -0,0 +1 @@
+Update the refcounts info of ``PyType_FromModuleAndSpec``.