On Mon, 28 Apr 2025 21:27:32 -0400 Willem de Bruijn wrote:
A bit ugly to initialize this here. Also, it already is initialized below.
We need a global so that the signal handler can access it. Python doesn't have syntax to define a variable without a value. Or do you suggest term_cnt = None ?
I meant that the "global term_cnt" in ksft_run below already creates the global var, and is guaranteed to do so before _ksft_intr, so no need to also define it outside a function.
Obviously not very important, don't mean to ask for a respin. LGTM.
Oh wow, thanks! totally didn't know that using the global is enough to add something to the global scope.