summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/C API/2023-09-04-11-47-12.gh-issue-108867.Cr_LKd.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/next/C API/2023-09-04-11-47-12.gh-issue-108867.Cr_LKd.rst')
-rw-r--r--Misc/NEWS.d/next/C API/2023-09-04-11-47-12.gh-issue-108867.Cr_LKd.rst5
1 files changed, 0 insertions, 5 deletions
diff --git a/Misc/NEWS.d/next/C API/2023-09-04-11-47-12.gh-issue-108867.Cr_LKd.rst b/Misc/NEWS.d/next/C API/2023-09-04-11-47-12.gh-issue-108867.Cr_LKd.rst
deleted file mode 100644
index 2f56466..0000000
--- a/Misc/NEWS.d/next/C API/2023-09-04-11-47-12.gh-issue-108867.Cr_LKd.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Add :c:func:`PyThreadState_GetUnchecked()` function: similar to
-:c:func:`PyThreadState_Get()`, but don't kill the process with a fatal error if
-it is NULL. The caller is responsible to check if the result is NULL.
-Previously, the function was private and known as
-``_PyThreadState_UncheckedGet()``. Patch by Victor Stinner.