Skip to content

Commit 3da8206

Browse files
committed
fix indentation of comment
1 parent 6047b55 commit 3da8206

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

Include/frameobject.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ typedef struct _frame {
2828
PyObject **f_stacktop;
2929
PyObject *f_trace; /* Trace function */
3030

31-
/* In a generator, we need to be able to swap between the exception
32-
state inside the generator and the exception state of the calling
33-
frame (which shouldn't be impacted when the generator "yields"
34-
from an except handler).
35-
These three fields exist exactly for that, and are unused for
36-
non-generator frames. See the save_exc_state and swap_exc_state
37-
functions in ceval.c for details of their use. */
31+
/* In a generator, we need to be able to swap between the exception
32+
state inside the generator and the exception state of the calling
33+
frame (which shouldn't be impacted when the generator "yields"
34+
from an except handler).
35+
These three fields exist exactly for that, and are unused for
36+
non-generator frames. See the save_exc_state and swap_exc_state
37+
functions in ceval.c for details of their use. */
3838
PyObject *f_exc_type, *f_exc_value, *f_exc_traceback;
3939
/* Borrowed reference to a generator, or NULL */
4040
PyObject *f_gen;

0 commit comments

Comments
 (0)