[Python-checkins] r78144 - python/branches/py3k/Python/ceval.c

benjamin.peterson python-checkins at python.org
Thu Feb 11 03:31:04 CET 2010


Author: benjamin.peterson
Date: Thu Feb 11 03:31:04 2010
New Revision: 78144

Log:
fix comment

Modified:
   python/branches/py3k/Python/ceval.c

Modified: python/branches/py3k/Python/ceval.c
==============================================================================
--- python/branches/py3k/Python/ceval.c	(original)
+++ python/branches/py3k/Python/ceval.c	Thu Feb 11 03:31:04 2010
@@ -2601,7 +2601,7 @@
 				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


More information about the Python-checkins mailing list