]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in code comment in main_loop label. (GH-20068)
authorChris Jerdonek <chris.jerdonek@gmail.com>
Fri, 15 May 2020 02:25:45 +0000 (19:25 -0700)
committerGitHub <noreply@github.com>
Fri, 15 May 2020 02:25:45 +0000 (19:25 -0700)
Python/ceval.c

index 699ad86a365b183149b9628b99ec141ba9beec2a..43ea1c760b17e94bb01bcfcc38b37c68da1c15d3 100644 (file)
@@ -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. */