summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2002-08-20 15:43:16 (GMT)
committerMichael W. Hudson <mwh@python.net>2002-08-20 15:43:16 (GMT)
commitc230b0e1f92bdc54318d58a07859bfcd7b03979a (patch)
treea493c4e18b6550bf13a0825c63c99604cff4fc42
parent62897c5c13ad24b5f192495b6979f3778de1678f (diff)
downloadcpython-c230b0e1f92bdc54318d58a07859bfcd7b03979a.zip
cpython-c230b0e1f92bdc54318d58a07859bfcd7b03979a.tar.gz
cpython-c230b0e1f92bdc54318d58a07859bfcd7b03979a.tar.bz2
Comment typo repair.
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
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;