summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.9.rst
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-05-28 16:26:01 (GMT)
committerGitHub <noreply@github.com>2020-05-28 16:26:01 (GMT)
commitfda7f6d61b13c68f59806db674e892fda4013348 (patch)
treee388ad977da11fba7af1c05f0e477b5481237af9 /Doc/whatsnew/3.9.rst
parent459acc551656785bc4a3363d65c7a60f822da8e3 (diff)
downloadcpython-fda7f6d61b13c68f59806db674e892fda4013348.zip
cpython-fda7f6d61b13c68f59806db674e892fda4013348.tar.gz
cpython-fda7f6d61b13c68f59806db674e892fda4013348.tar.bz2
bpo-37878: PyThreadState_DeleteCurrent() was not removed (GH-20489)
Update What's New in Python 3.9. PyThreadState_DeleteCurrent was not removed, but excluded from the limited C API.
Diffstat (limited to 'Doc/whatsnew/3.9.rst')
-rw-r--r--Doc/whatsnew/3.9.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 35496d7..a42ec09 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -829,9 +829,6 @@ Removed
removed, standard :class:`bytes` objects are always used instead.
(Contributed by Jon Janzen in :issue:`36409`.)
-* The C function ``PyThreadState_DeleteCurrent()`` has been removed. It was not documented.
- (Contributed by Joannah Nanjekye in :issue:`37878`.)
-
* The C function ``PyGen_NeedsFinalizing`` has been removed. It was not
documented, tested, or used anywhere within CPython after the implementation
of :pep:`442`. Patch by Joannah Nanjekye.
@@ -1108,6 +1105,8 @@ Removed
* Exclude the following functions from the limited C API:
+ * ``PyThreadState_DeleteCurrent()``
+ (Contributed by Joannah Nanjekye in :issue:`37878`.)
* ``_Py_CheckRecursionLimit``
* ``_Py_NewReference()``
* ``_Py_ForgetReference()``