]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-37878: PyThreadState_DeleteCurrent() was not removed (GH-20489)
authorVictor Stinner <vstinner@python.org>
Thu, 28 May 2020 16:26:01 +0000 (18:26 +0200)
committerGitHub <noreply@github.com>
Thu, 28 May 2020 16:26:01 +0000 (18:26 +0200)
Update What's New in Python 3.9.

PyThreadState_DeleteCurrent was not removed, but excluded from the limited C API.

Doc/whatsnew/3.9.rst

index 35496d7b8f5ef326b410e8082925a8b715585502..a42ec09c6532fdc166aba1298aeac6968e4ef2c5 100644 (file)
@@ -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()``