aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2020-05-14 19:25:45 -0700
committerGitHub <noreply@github.com>2020-05-14 19:25:45 -0700
commit4a12d121860fb60d56cdcc212817577cac2356d0 (patch)
tree7bf7cd365f9d8f5bd5ab628b8fb892357465212f /Python/ceval.c
parentbpo-40612: Fix SyntaxError edge cases in traceback formatting (GH-20072) (diff)
downloadcpython-4a12d121860fb60d56cdcc212817577cac2356d0.tar.gz
cpython-4a12d121860fb60d56cdcc212817577cac2356d0.tar.bz2
cpython-4a12d121860fb60d56cdcc212817577cac2356d0.zip
Fix typo in code comment in main_loop label. (GH-20068)
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 699ad86a365..43ea1c760b1 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1396,7 +1396,7 @@ main_loop:
/* 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. */