https://github.com/python/cpython/commit/292b6cf3e67d1d127ebaf5e7b57c706ba8f9610a commit: 292b6cf3e67d1d127ebaf5e7b57c706ba8f9610a branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-10-03T23:20:35+03:00 summary:
[3.14] Document `Py_AddPendingCall()` change with subinterpreters in 3.12 (GH-139117) (#139118) Co-authored-by: Peter Bierma <[email protected]> files: M Doc/c-api/init.rst diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index 416bece23bcbb4..c36e0b4c000155 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -2002,6 +2002,10 @@ pointer and a void pointer argument. called from the main interpreter. Each subinterpreter now has its own list of scheduled calls. + .. versionchanged:: 3.12 + This function now always schedules *func* to be run in the main + interpreter. + .. _profiling: Profiling and Tracing _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
