diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-27 14:43:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-27 14:43:09 (GMT) |
commit | 9a7204b86bdb3e26c2a62aeaafb875275500b9f7 (patch) | |
tree | 64bc1527e40e464ea3d38ccf4dabba4a4277c704 | |
parent | 1dbb427dd67a1de5b3662cbda0277ff2c3b18095 (diff) | |
download | cpython-9a7204b86bdb3e26c2a62aeaafb875275500b9f7.zip cpython-9a7204b86bdb3e26c2a62aeaafb875275500b9f7.tar.gz cpython-9a7204b86bdb3e26c2a62aeaafb875275500b9f7.tar.bz2 |
gh-105268: _PyGC_FINALIZED() removal is already documented in 3.12 (#107350)
-rw-r--r-- | Doc/whatsnew/3.13.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 8ca0abf..7cad5d1 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -940,13 +940,6 @@ Removed (Contributed by Victor Stinner in :gh:`105182`.) -* Remove the old private, undocumented and untested ``_PyGC_FINALIZED()`` macro - which was kept for backward compatibility with Python 3.8 and older: use - :c:func:`PyObject_GC_IsFinalized()` instead. The `pythoncapi-compat project - <https://github.com/python/pythoncapi-compat/>`__ can be used to get this - function on Python 3.8 and older. - (Contributed by Victor Stinner in :gh:`105268`.) - * Remove the old aliases to functions calling functions which were kept for backward compatibility with Python 3.8 provisional API: |