Description
(This is something I've been thinking about in the last few weeks and has before more significant as we've added Py_IsFinalizing()
to the 3.13 public C-API1.)
tl;dr I think that either we should make the Py_IsFinalizing()
behavior match the name more closely or we should change the name. Internally we should think in terms of what runtime capabilities are available rather than just "is finalizing".
As of recently, we have Py_IsFinalizing()
in the public C-API, along with various similarly named (.*[Ff]inalizing.*
) functions and runtime state fields in the internal API. 2 In addition, sys.is_finalizing()
has been around since 3.53.
They all serve to track/inform when the current runtime/interpreter is shutting down and therefore might not be in a stable state (leading to crashes). The intention is clear in the docs for Py_IsFinalizing()
:
int Py_IsFinalizing()
Return true (non-zero) if the main Python interpreter is shutting down. Return false (zero) otherwise.
Internally, we use that status to determine the availability of certain capabilities, most notably threading. In fact, the whole family of functions and state started in 2011 as part of the effort to deal with daemon threads during shutdown.
This has lead to a bit of a conflict in the meaning of "finalizing". IMHO, it would be worth sorting out the discrepancy. I expect this will include either changing the behavior of Py_IsFinalizing()
or changing the name of the function to match what it is actually reporting.
(Is this a critical issue? No. The matter at hand is fundamentally related to daemon threads. 🤮)
(Is it worth thinking through anyway? Yes. I expect the discussion would help bring more clarity to runtime finalization and to the runtime in general.)
Context
Finalization is started for the runtime by Py_Finalize()
and Py_FinalizeEx()
. For an interpreter we use Py_EndInterpreter()
. (For thread states we don't have a specific API, but the closest is PyThreadState_Clear()
+ PyThreadState_Delete()
.)
Once finalization has begun, we keep track of that fact in a number of places:
_PyRuntimeState._finalizing
_PyRuntimeState._finalizing_id
PyInterpreterState.finalizing
PyInterpreterState._finalizing
PyInterpreterState._finalizing_id
PyThreadState._status.finalizing
We report it through a various API:
Py_IsFinalizing()
[3.13] (docs: "Return true (non-zero) if the main Python interpreter is shutting down. Return false (zero) otherwise.")sys.is_finalizing()
[3.5] (docs: "Return True if the Python interpreter is shutting down, False otherwise.")_PyRuntimeState_GetFinalizing()
_PyRuntimeState_GetFinalizingID()
_PyInterpreterState_GetFinalizing()
_PyInterpreterState_GetFinalizingID()
Here's a timeline:
- [2008, ~3.0] bpo-1856 (AKA gh-46164) opened about crashes with daemon threads during runtime finalization
- [2011, 3.2] added
_Py_Finalizing
as part of the effort to solve bpo-1856 - [3.5] added
sys.is_finalizing()
, a light wrapper around_Py_Finalizing
- [3.7] replaced
_Py_Finalizing
with_PyRuntimeState.finalizing
; added_Py_IsFinalizing()
(in "public" C-API) - [2019] (gh-80608)
_Py_Finalizing()
recommended for use in docs forPyEval_RestoreThread()
- [2020, 3.9] added
_Py_GetFinalizing()
; renamed_PyRuntimeState.finalizing
to_PyRuntimeState._finalizing
(and made it atomic) - [July 2023, 3.13] (gh-106400) moved
_Py_IsFinalizing()
to the internal C-API - [Aug. 2023, 3.13] (gh-108014/gh-108032) added
_Py_IsFinalizing()
back to the public C-API asPy_IsFinalizing()
- [this week] (gh-110397/gh-110441) discussion about adding
Py_IsFinalizing()
to the stable ABI
The Problem
The name Py_IsFinalizing
(or sys.is_finalizing
2) implies that the function tells you if the runtime is shutting down and will soon be unavailable. In fact, the docs actually say this. However, that explanation is only mostly accurate. When the function returns true, that is completely correct, but the same is not completely correct when it returns false. So, where might returning false be incorrect?
Currently, there is actually a meaningful space of time between when Py_Finalize()
is called and when Py_IsFinalizing()
returns true. In that time we do a number of things, like wait for all non-daemon threads to stop and run all global atexit hooks. Essentially, Py_IsFinalizing()
returns true only at the point in finalization where other threads (i.e. not the current/main thread) should no longer rely on a stable runtime or C-API. (Perhaps the function should be called something like Py_AreThreadsAllowed()
instead.)
Tracking that point in time is important for how we handle daemon threads during shutdown. We shouldn't change that.
To resolve any confusion and ambiguity here, we should instead:
- explicitly acknowledge what we're actually tracking (in name and description)
- decide what we care about internally (and why)
- determine what information users actually want
Internally we care about two things: whether or not the runtime currently supports multithreading and whether or not the runtime (or current interpreter) is reaching the end of its life.
For users of PyEval_RestoreThread()
, they want to know if the current thread will be terminated if they call that function to re-acquire the GIL. That matters for extensions running in daemon threads, and probably for some embedders. I'm not sure they care about whether or not Python is finalizing specifically.
What about other users? I don't know why they might want to know if the runtime is finalizing. It would certainly only be of interest for daemon threads (and for embedded applications).
What To Do About It?
It makes sense to figure out what folks actually care about when it comes to the concept of "finalizing". It would likewise make sense to ensure names and descriptions actually match what functions do (and state is for).
In the specific case of Py_IsFinalizing()
, I see a couple options:
- change it to track the moment
Py_Finalize()
starts, before it actually does anything, so "finalizing" is 100% accurate - change the name to match what it actually tracks: whether or not other threads can count on a stable runtime
(Likewise for sys.is_finalizing()
, and most internal API.)
Here are some tricky things to consider:
- we want to disable some capabilities as soon as possible during shutdown (e.g. disallow creating new threads before waiting for existing non-daemon threads to finish)
- other threads are welcome to keep using the full runtime, even after shutdown begins, as long as we haven't started cleaning up state (which would then cause crashes) 4
- in the main thread (executing
Py_Finalize()
), extension modules can (for now?) still run the risk of accessing invalid state after the pointPy_IsFinalizing()
returns true, up to the point that the extension module is cleaned up (seefinalize_modules()
in pylifecycle.c) and perhaps even after that
Footnotes
-
...and possibly to the stable ABI. See gh-110397: Add Py_IsFinalizing() to the stable ABI #110441. ↩
-
We also have the fundamentally related
Py_Finalize()
andPy_FinalizeEx()
, which have been with us for a long, long time. ↩ ↩2 -
sys.finalizing()
is a thin wrapper aroundPy_IsFinalizing()
. Before 3.13, it wrapped_Py_IsFinalizing()
. Before 3.7, it wrapped_Py_Finalizing
. ↩ -
This is the fundamental basis of the original "finalizing" status we introduced back in 2011.
The one tricky thing is that we don't want ↩