Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 76e1bb0

Browse files
committed
Fix indenting
1 parent 4c1be9e commit 76e1bb0

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

Include/genobject.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ extern "C" {
1111
struct _frame; /* Avoid including frameobject.h */
1212

1313
typedef struct {
14-
PyObject_HEAD
15-
/* The gi_ prefix is intended to remind of generator-iterator. */
14+
PyObject_HEAD
15+
/* The gi_ prefix is intended to remind of generator-iterator. */
1616

17-
/* Note: gi_frame can be NULL if the generator is "finished" */
18-
struct _frame *gi_frame;
17+
/* Note: gi_frame can be NULL if the generator is "finished" */
18+
struct _frame *gi_frame;
1919

20-
/* True if generator is being executed. */
21-
int gi_running;
20+
/* True if generator is being executed. */
21+
int gi_running;
2222

23-
/* The code object backing the generator */
24-
PyObject *gi_code;
23+
/* The code object backing the generator */
24+
PyObject *gi_code;
2525

26-
/* List of weak reference. */
27-
PyObject *gi_weakreflist;
26+
/* List of weak reference. */
27+
PyObject *gi_weakreflist;
2828
} PyGenObject;
2929

3030
PyAPI_DATA(PyTypeObject) PyGen_Type;

0 commit comments

Comments
 (0)