Commit 139d44cb authored by Andrew Svetlov's avatar Andrew Svetlov

Update comment: SAVE_EXC_STATE and SWAP_EXC_STATE macroses are saave_exc_state...

Update comment: SAVE_EXC_STATE and SWAP_EXC_STATE macroses are saave_exc_state and swap_exc_state functions now.
parent f0ca029c
...@@ -33,8 +33,8 @@ typedef struct _frame { ...@@ -33,8 +33,8 @@ typedef struct _frame {
frame (which shouldn't be impacted when the generator "yields" frame (which shouldn't be impacted when the generator "yields"
from an except handler). from an except handler).
These three fields exist exactly for that, and are unused for These three fields exist exactly for that, and are unused for
non-generator frames. See the SAVE_EXC_STATE and SWAP_EXC_STATE non-generator frames. See the save_exc_state and swap_exc_state
macros in ceval.c for details of their use. */ functions in ceval.c for details of their use. */
PyObject *f_exc_type, *f_exc_value, *f_exc_traceback; PyObject *f_exc_type, *f_exc_value, *f_exc_traceback;
PyThreadState *f_tstate; PyThreadState *f_tstate;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment