From c230b0e1f92bdc54318d58a07859bfcd7b03979a Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Tue, 20 Aug 2002 15:43:16 +0000 Subject: Comment typo repair. --- Python/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ceval.c b/Python/ceval.c index 3494a38..3b984c8 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; -- cgit v0.12