Browse Source

Fix typo in code comment in main_loop label. (GH-20068)

pull/20362/head
Chris Jerdonek 6 years ago
committed by GitHub
parent
commit
4a12d12186
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Python/ceval.c

2
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. */

Loading…
Cancel
Save