mirror of
https://github.com/python/cpython.git
synced 2025-12-09 10:37:17 +00:00
Fix indenting
This commit is contained in:
parent
4c1be9e3d2
commit
76e1bb0ef9
1 changed files with 10 additions and 10 deletions
|
|
@ -11,20 +11,20 @@ extern "C" {
|
||||||
struct _frame; /* Avoid including frameobject.h */
|
struct _frame; /* Avoid including frameobject.h */
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
PyObject_HEAD
|
PyObject_HEAD
|
||||||
/* The gi_ prefix is intended to remind of generator-iterator. */
|
/* The gi_ prefix is intended to remind of generator-iterator. */
|
||||||
|
|
||||||
/* Note: gi_frame can be NULL if the generator is "finished" */
|
/* Note: gi_frame can be NULL if the generator is "finished" */
|
||||||
struct _frame *gi_frame;
|
struct _frame *gi_frame;
|
||||||
|
|
||||||
/* True if generator is being executed. */
|
/* True if generator is being executed. */
|
||||||
int gi_running;
|
int gi_running;
|
||||||
|
|
||||||
/* The code object backing the generator */
|
/* The code object backing the generator */
|
||||||
PyObject *gi_code;
|
PyObject *gi_code;
|
||||||
|
|
||||||
/* List of weak reference. */
|
/* List of weak reference. */
|
||||||
PyObject *gi_weakreflist;
|
PyObject *gi_weakreflist;
|
||||||
} PyGenObject;
|
} PyGenObject;
|
||||||
|
|
||||||
PyAPI_DATA(PyTypeObject) PyGen_Type;
|
PyAPI_DATA(PyTypeObject) PyGen_Type;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue