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

benjamin.peterson python-checkins at python.org
Sat Jun 4 01:39:18 EDT 2016


https://hg.python.org/cpython/rev/249c1b2f852f
changeset:   101686:249c1b2f852f
parent:      101678:2d864ac472f0
parent:      101685:566cbc844574
user:        Benjamin Peterson <benjamin at python.org>
date:        Fri Jun 03 22:38:10 2016 -0700
summary:
  merge 3.5

files:
  Include/frameobject.h |  14 +++++++-------
  1 files changed, 7 insertions(+), 7 deletions(-)


diff --git a/Include/frameobject.h b/Include/frameobject.h
--- a/Include/frameobject.h
+++ b/Include/frameobject.h
@@ -28,13 +28,13 @@
     PyObject **f_stacktop;
     PyObject *f_trace;          /* Trace function */
 
-        /* In a generator, we need to be able to swap between the exception
-           state inside the generator and the exception state of the calling
-           frame (which shouldn't be impacted when the generator "yields"
-           from an except handler).
-           These three fields exist exactly for that, and are unused for
-           non-generator frames. See the save_exc_state and swap_exc_state
-           functions in ceval.c for details of their use. */
+    /* In a generator, we need to be able to swap between the exception
+       state inside the generator and the exception state of the calling
+       frame (which shouldn't be impacted when the generator "yields"
+       from an except handler).
+       These three fields exist exactly for that, and are unused for
+       non-generator frames. See the save_exc_state and swap_exc_state
+       functions in ceval.c for details of their use. */
     PyObject *f_exc_type, *f_exc_value, *f_exc_traceback;
     /* Borrowed reference to a generator, or NULL */
     PyObject *f_gen;

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


More information about the Python-checkins mailing list