]> granicus.if.org Git - python/commitdiff
Comment typo repair.
authorMichael W. Hudson <mwh@python.net>
Tue, 20 Aug 2002 15:43:16 +0000 (15:43 +0000)
committerMichael W. Hudson <mwh@python.net>
Tue, 20 Aug 2002 15:43:16 +0000 (15:43 +0000)
Python/ceval.c

index 3494a3854db9e196b240c5a37f883213d61d88b5..3b984c8115dd50c285928c53ac3b5b81ef9562e5 100644 (file)
@@ -604,7 +604,7 @@ eval_frame(PyFrameObject *f)
           f->f_lasti now refers to the index of the last instruction
           executed.  You might think this was obvious from the name, but
           this wasn't always true before 2.3!  PyFrame_New now sets
-          f->f_lasti to -1 (i.e. the index *before* the first instruction
+          f->f_lasti to -1 (i.e. the index *before* the first instruction)
           and YIELD_VALUE doesn't fiddle with f_lasti any more.  So this
           does work.  Promise. */
        next_instr = first_instr + f->f_lasti + 1;