diff options
author | Victor Stinner <vstinner@python.org> | 2023-06-06 14:22:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-06 14:22:04 (GMT) |
commit | 2bbb557b0f077f8c8b571148e0368472bbbbf5ea (patch) | |
tree | 464a18207f80280fd3e3bc4e0a50875d0ecb9cd9 /PC | |
parent | 2d9ead219e940d3fd717cdb0841cfe8a97efe554 (diff) | |
download | cpython-2bbb557b0f077f8c8b571148e0368472bbbbf5ea.zip cpython-2bbb557b0f077f8c8b571148e0368472bbbbf5ea.tar.gz cpython-2bbb557b0f077f8c8b571148e0368472bbbbf5ea.tar.bz2 |
[3.12] gh-102304: Fix Py_INCREF() stable ABI in debug mode (#104763) (#105352)
gh-102304: Fix Py_INCREF() stable ABI in debug mode (#104763)
When Python is built in debug mode (if the Py_REF_DEBUG macro is
defined), the Py_INCREF() and Py_DECREF() function are now always
implemented as opaque functions to avoid leaking implementation
details like the "_Py_RefTotal" variable or the
_Py_DecRefTotal_DO_NOT_USE_THIS() function.
* Remove _Py_IncRefTotal_DO_NOT_USE_THIS() and
_Py_DecRefTotal_DO_NOT_USE_THIS() from the stable ABI.
* Remove _Py_NegativeRefcount() from limited C API.
(cherry picked from commit 92022d8416d9e175800b65c4d71d4e4fb47adcb0)
Diffstat (limited to 'PC')
-rwxr-xr-x | PC/python3dll.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/PC/python3dll.c b/PC/python3dll.c index 5665d55..505feef 100755 --- a/PC/python3dll.c +++ b/PC/python3dll.c @@ -17,9 +17,7 @@ EXPORT_FUNC(_Py_BuildValue_SizeT) EXPORT_FUNC(_Py_CheckRecursiveCall) EXPORT_FUNC(_Py_Dealloc) EXPORT_FUNC(_Py_DecRef) -EXPORT_FUNC(_Py_DecRefTotal_DO_NOT_USE_THIS) EXPORT_FUNC(_Py_IncRef) -EXPORT_FUNC(_Py_IncRefTotal_DO_NOT_USE_THIS) EXPORT_FUNC(_Py_NegativeRefcount) EXPORT_FUNC(_Py_VaBuildValue_SizeT) EXPORT_FUNC(_PyArg_Parse_SizeT) |