Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
76e1bb0e
Commit
76e1bb0e
authored
13 years ago
by
Nick Coghlan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix indenting
parent
4c1be9e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
Include/genobject.h
Include/genobject.h
+10
-10
No files found.
Include/genobject.h
View file @
76e1bb0e
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment