summaryrefslogtreecommitdiff
path: root/Include/genobject.h
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-01-14 16:08:08 +1000
committerNick Coghlan <ncoghlan@gmail.com>2012-01-14 16:08:08 +1000
commit76e1bb0ef9eab6b937e03816e403a5b4a8c169fa (patch)
tree93f499b75e1f2c8a58c892547b6904f01409a626 /Include/genobject.h
parent4c1be9e3d26ba32434b6e837960b06cc50789680 (diff)
downloadcpython-git-76e1bb0ef9eab6b937e03816e403a5b4a8c169fa.tar.gz
Fix indenting
Diffstat (limited to 'Include/genobject.h')
-rw-r--r--Include/genobject.h20
1 files changed, 10 insertions, 10 deletions
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;