From: Nick Coghlan Date: Sat, 14 Jan 2012 06:08:08 +0000 (+1000) Subject: Fix indenting X-Git-Tag: v3.3.0a1~417 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=76e1bb0ef9eab6b937e03816e403a5b4a8c169fa;p=python Fix indenting --- diff --git a/Include/genobject.h b/Include/genobject.h index 13a385601f..e7a1c01d3d 100644 --- a/Include/genobject.h +++ b/Include/genobject.h @@ -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;