Skip to content

Commit

Permalink
fix indentation of comment
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminp committed Jun 4, 2016
1 parent 6047b55 commit 3da8206
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Include/frameobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3da8206

Please sign in to comment.