Commit c230b0e1 authored by Michael W. Hudson's avatar Michael W. Hudson

Comment typo repair.

parent 62897c5c
...@@ -604,7 +604,7 @@ eval_frame(PyFrameObject *f) ...@@ -604,7 +604,7 @@ eval_frame(PyFrameObject *f)
f->f_lasti now refers to the index of the last instruction f->f_lasti now refers to the index of the last instruction
executed. You might think this was obvious from the name, but executed. You might think this was obvious from the name, but
this wasn't always true before 2.3! PyFrame_New now sets 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 and YIELD_VALUE doesn't fiddle with f_lasti any more. So this
does work. Promise. */ does work. Promise. */
next_instr = first_instr + f->f_lasti + 1; next_instr = first_instr + f->f_lasti + 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment