diff options
author | Victor Stinner <vstinner@python.org> | 2023-10-07 15:59:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-07 15:59:16 (GMT) |
commit | 64f158e7b09e67d0bf5c8603ff88c86ed4e8f8fd (patch) | |
tree | 940c5b5e0e1d4bc2ba8fba1de7dc68c3d1c2e89d /Lib | |
parent | b987fdb19b981ef6e7f71b41790b5ed4e2064646 (diff) | |
download | cpython-64f158e7b09e67d0bf5c8603ff88c86ed4e8f8fd.zip cpython-64f158e7b09e67d0bf5c8603ff88c86ed4e8f8fd.tar.gz cpython-64f158e7b09e67d0bf5c8603ff88c86ed4e8f8fd.tar.bz2 |
gh-110397: Add Py_IsFinalizing() to the stable ABI (#110441)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_stable_abi_ctypes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_stable_abi_ctypes.py b/Lib/test/test_stable_abi_ctypes.py index 94f817f8e..4691687 100644 --- a/Lib/test/test_stable_abi_ctypes.py +++ b/Lib/test/test_stable_abi_ctypes.py @@ -851,6 +851,7 @@ SYMBOL_NAMES = ( "Py_InitializeEx", "Py_Is", "Py_IsFalse", + "Py_IsFinalizing", "Py_IsInitialized", "Py_IsNone", "Py_IsTrue", |