summaryrefslogtreecommitdiffstats
path: root/Include/cpython
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-10-07 15:59:16 (GMT)
committerGitHub <noreply@github.com>2023-10-07 15:59:16 (GMT)
commit64f158e7b09e67d0bf5c8603ff88c86ed4e8f8fd (patch)
tree940c5b5e0e1d4bc2ba8fba1de7dc68c3d1c2e89d /Include/cpython
parentb987fdb19b981ef6e7f71b41790b5ed4e2064646 (diff)
downloadcpython-64f158e7b09e67d0bf5c8603ff88c86ed4e8f8fd.zip
cpython-64f158e7b09e67d0bf5c8603ff88c86ed4e8f8fd.tar.gz
cpython-64f158e7b09e67d0bf5c8603ff88c86ed4e8f8fd.tar.bz2
gh-110397: Add Py_IsFinalizing() to the stable ABI (#110441)
Diffstat (limited to 'Include/cpython')
-rw-r--r--Include/cpython/pylifecycle.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/cpython/pylifecycle.h b/Include/cpython/pylifecycle.h
index 11b280a..d425a23 100644
--- a/Include/cpython/pylifecycle.h
+++ b/Include/cpython/pylifecycle.h
@@ -81,5 +81,3 @@ PyAPI_FUNC(PyStatus) Py_NewInterpreterFromConfig(
typedef void (*atexit_datacallbackfunc)(void *);
PyAPI_FUNC(int) PyUnstable_AtExit(
PyInterpreterState *, atexit_datacallbackfunc, void *);
-
-PyAPI_FUNC(int) Py_IsFinalizing(void);