From 0ad0bdc0e2c3a2966e3c63cb03cf842483d41fdb Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Wed, 13 May 2020 01:56:13 -0700 Subject: [PATCH] Fix code comment typo in main_loop label. --- Python/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ceval.c b/Python/ceval.c index 699ad86a365b18..43ea1c760b17e9 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1396,7 +1396,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, PyFrameObject *f, int throwflag) /* Do periodic things. Doing this every time through the loop would add too much overhead, so we do it only every Nth instruction. We also do it if - ``pendingcalls_to_do'' is set, i.e. when an asynchronous + ``pending.calls_to_do'' is set, i.e. when an asynchronous event needs attention (e.g. a signal handler or async I/O handler); see Py_AddPendingCall() and Py_MakePendingCalls() above. */