]> granicus.if.org Git - python/commitdiff
fix indentation of comment
authorBenjamin Peterson <benjamin@python.org>
Sat, 4 Jun 2016 05:37:48 +0000 (22:37 -0700)
committerBenjamin Peterson <benjamin@python.org>
Sat, 4 Jun 2016 05:37:48 +0000 (22:37 -0700)
Include/frameobject.h

index 966ff1f6e6e38c3c5c552bb22cecb6d468693e93..00c50933dc98f980dc14b878b049ff10b270d4f4 100644 (file)
@@ -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;