]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122)
authorVictor Stinner <vstinner@python.org>
Wed, 4 Nov 2020 12:59:15 +0000 (13:59 +0100)
committerGitHub <noreply@github.com>
Wed, 4 Nov 2020 12:59:15 +0000 (13:59 +0100)
commit8021875bbcf7385e651def51bc597472a569042c
tree9309451fd98ae23460596a2f2cbc6d8b7f9e3395
parent3529718925f40d14ed48d281d809187bc7314a14
bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122)

Added PyModule_AddObjectRef() function: similar to
PyModule_AddObjectRef() but don't steal a reference to the value on
success.
Doc/c-api/module.rst
Doc/whatsnew/3.10.rst
Include/modsupport.h
Misc/NEWS.d/next/C API/2020-11-03-11-52-27.bpo-1635741.aDYJKB.rst [new file with mode: 0644]
Python/modsupport.c