summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-06-04 05:38:10 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-06-04 05:38:10 (GMT)
commitf22e3608952de845a3dc9993ca5dc685e695fd07 (patch)
tree5d44435d31e6f24eda509c3e5c782adb5112dcf3 /Include
parent5a493e9dc4f83e7e2a67dc38b7d2b886a6ee8960 (diff)
parent3da82067c70c92a5edbf75ec6d44cbc34cd5ad82 (diff)
downloadcpython-f22e3608952de845a3dc9993ca5dc685e695fd07.zip
cpython-f22e3608952de845a3dc9993ca5dc685e695fd07.tar.gz
cpython-f22e3608952de845a3dc9993ca5dc685e695fd07.tar.bz2
merge 3.5
Diffstat (limited to 'Include')
-rw-r--r--Include/frameobject.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/Include/frameobject.h b/Include/frameobject.h
index 966ff1f..00c5093 100644
--- a/Include/frameobject.h
+++ b/Include/frameobject.h
@@ -28,13 +28,13 @@ typedef struct _frame {
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;