[Python-checkins] cpython: Fix indenting

nick.coghlan python-checkins at python.org
Sat Jan 14 07:08:17 CET 2012


http://hg.python.org/cpython/rev/2d768a2e8909
changeset:   74378:2d768a2e8909
user:        Nick Coghlan <ncoghlan at gmail.com>
date:        Sat Jan 14 16:08:08 2012 +1000
summary:
  Fix indenting

files:
  Include/genobject.h |  20 ++++++++++----------
  1 files changed, 10 insertions(+), 10 deletions(-)


diff --git a/Include/genobject.h b/Include/genobject.h
--- a/Include/genobject.h
+++ b/Include/genobject.h
@@ -11,20 +11,20 @@
 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;

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list