diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-02-11 02:31:04 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-02-11 02:31:04 (GMT) |
commit | f8b60b20a576c4d740b3f69fc1cd23f629629517 (patch) | |
tree | affc2dd78a3dd44b73d8bc26e6642eaa613c34d1 /Python/ceval.c | |
parent | 1f449143f48969067d6bd7bfec6d377e993d46a5 (diff) | |
download | cpython-f8b60b20a576c4d740b3f69fc1cd23f629629517.zip cpython-f8b60b20a576c4d740b3f69fc1cd23f629629517.tar.gz cpython-f8b60b20a576c4d740b3f69fc1cd23f629629517.tar.bz2 |
fix comment
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 321ab54..5d1fb28 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -2601,7 +2601,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) SET_VALUE(7, tb); SET_VALUE(6, exc); SET_VALUE(5, tp); - /* UNWIND_EXCEPT_BLOCK will pop this off. */ + /* UNWIND_EXCEPT_HANDLER will pop this off. */ SET_FOURTH(NULL); /* We just shifted the stack down, so we have to tell the except handler block that the |