diff options
author | scoder <stefan_ml@behnel.de> | 2021-04-28 16:12:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-28 16:12:16 (GMT) |
commit | 3cc481b9de43c234889c8010e7da3af7c0f42319 (patch) | |
tree | 1166babff0120ad235c37789907d640eec280c8f /Doc/data/stable_abi.dat | |
parent | baecfbd849dbf42360d3a84af6cc13160838f24d (diff) | |
download | cpython-3cc481b9de43c234889c8010e7da3af7c0f42319.zip cpython-3cc481b9de43c234889c8010e7da3af7c0f42319.tar.gz cpython-3cc481b9de43c234889c8010e7da3af7c0f42319.tar.bz2 |
bpo-28254: Add a C-API for controlling the GC state (GH-25687)
Add new C-API functions to control the state of the garbage collector:
PyGC_Enable(), PyGC_Disable(), PyGC_IsEnabled(),
corresponding to the functions in the gc module.
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Doc/data/stable_abi.dat')
-rw-r--r-- | Doc/data/stable_abi.dat | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/data/stable_abi.dat b/Doc/data/stable_abi.dat index cdc7160..491a5fb 100644 --- a/Doc/data/stable_abi.dat +++ b/Doc/data/stable_abi.dat @@ -268,6 +268,9 @@ PyFrame_GetLineNumber PyFrozenSet_New PyFrozenSet_Type PyGC_Collect +PyGC_Disable +PyGC_Enable +PyGC_IsEnabled PyGILState_Ensure PyGILState_GetThisThreadState PyGILState_Release |