From: Michael W. Hudson Date: Tue, 20 Aug 2002 15:43:16 +0000 (+0000) Subject: Comment typo repair. X-Git-Tag: v2.3c1~4385 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c230b0e1f92bdc54318d58a07859bfcd7b03979a;p=python Comment typo repair. --- diff --git a/Python/ceval.c b/Python/ceval.c index 3494a3854d..3b984c8115 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -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;