]> granicus.if.org Git - python/commitdiff
Fix indenting
authorNick Coghlan <ncoghlan@gmail.com>
Sat, 14 Jan 2012 06:08:08 +0000 (16:08 +1000)
committerNick Coghlan <ncoghlan@gmail.com>
Sat, 14 Jan 2012 06:08:08 +0000 (16:08 +1000)
Include/genobject.h

index 13a385601f1697bbaa0bf9f6208d19174c92a0a1..e7a1c01d3d6c043fe5020f8e22ef99706c0cf239 100644 (file)
@@ -11,20 +11,20 @@ extern "C" {
 struct _frame; /* Avoid including frameobject.h */
 
 typedef struct {
-        PyObject_HEAD
-        /* The gi_ prefix is intended to remind of generator-iterator. */
+    PyObject_HEAD
+    /* The gi_ prefix is intended to remind of generator-iterator. */
 
-        /* Note: gi_frame can be NULL if the generator is "finished" */
-        struct _frame *gi_frame;
+    /* Note: gi_frame can be NULL if the generator is "finished" */
+    struct _frame *gi_frame;
 
-        /* True if generator is being executed. */
-        int gi_running;
+    /* True if generator is being executed. */
+    int gi_running;
     
-        /* The code object backing the generator */
-        PyObject *gi_code;
+    /* The code object backing the generator */
+    PyObject *gi_code;
 
-        /* List of weak reference. */
-        PyObject *gi_weakreflist;
+    /* List of weak reference. */
+    PyObject *gi_weakreflist;
 } PyGenObject;
 
 PyAPI_DATA(PyTypeObject) PyGen_Type;