diff options
author | Victor Stinner <vstinner@python.org> | 2023-06-09 09:56:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-09 09:56:03 (GMT) |
commit | 58e4b69f698e6fd0694a58f18679bbe0e7e50e91 (patch) | |
tree | c516348f5294f1916a95601a044b5a4bef79f24e /Doc | |
parent | 7ba0fd9f87ad75f8eda8e002c2fc71049b815f33 (diff) | |
download | cpython-58e4b69f698e6fd0694a58f18679bbe0e7e50e91.zip cpython-58e4b69f698e6fd0694a58f18679bbe0e7e50e91.tar.gz cpython-58e4b69f698e6fd0694a58f18679bbe0e7e50e91.tar.bz2 |
gh-102304: Remove Py_INCREF() doc change (#105552)
Py_INCREF() was made compatible again with Python 3.9 and older in
the limited API of Python debug mode.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.12.rst | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index 3584674..f1c3f08 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -1537,15 +1537,6 @@ Build Changes :file:`!configure`. (Contributed by Christian Heimes in :gh:`89886`.) -* C extensions built with the :ref:`limited C API <limited-c-api>` - on :ref:`Python build in debug mode <debug-build>` no longer support Python - 3.9 and older. In this configuration, :c:func:`Py_INCREF` and - :c:func:`Py_DECREF` are now always implemented as opaque function calls, - but the called functions were added to Python 3.10. Build C extensions - with a release build of Python or with Python 3.12 and older, to keep support - for Python 3.9 and older. - (Contributed by Victor Stinner in :gh:`102304`.) - C API Changes ============= |