[Python-checkins] cpython (merge 3.3 -> default): merge 3.3

benjamin.peterson python-checkins at python.org
Wed Oct 30 03:26:22 CET 2013


http://hg.python.org/cpython/rev/28c04e954bb6
changeset:   86773:28c04e954bb6
parent:      86771:1787277915e9
parent:      86772:7fa3e824a4ee
user:        Benjamin Peterson <benjamin at python.org>
date:        Tue Oct 29 22:25:55 2013 -0400
summary:
  merge 3.3

files:
  Python/ceval.c |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Python/ceval.c b/Python/ceval.c
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -2716,7 +2716,7 @@
         }
 
         TARGET(WITH_CLEANUP) {
-            /* At the top of the stack are 1-3 values indicating
+            /* At the top of the stack are 1-6 values indicating
                how/why we entered the finally clause:
                - TOP = None
                - (TOP, SECOND) = (WHY_{RETURN,CONTINUE}), retval
@@ -2729,9 +2729,9 @@
                otherwise we must call
                  EXIT(None, None, None)
 
-               In the first two cases, we remove EXIT from the
+               In the first three cases, we remove EXIT from the
                stack, leaving the rest in the same order.  In the
-               third case, we shift the bottom 3 values of the
+               fourth case, we shift the bottom 3 values of the
                stack down, and replace the empty spot with NULL.
 
                In addition, if the stack represents an exception,

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list