Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
20ce989a
Commit
20ce989a
authored
7 years ago
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing "static" modifiers for async-gen type structs.
parent
93c83a6e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Cython/Utility/AsyncGen.c
Cython/Utility/AsyncGen.c
+4
-4
No files found.
Cython/Utility/AsyncGen.c
View file @
20ce989a
...
@@ -331,7 +331,7 @@ static __Pyx_PyAsyncMethodsStruct __Pyx_async_gen_as_async = {
...
@@ -331,7 +331,7 @@ static __Pyx_PyAsyncMethodsStruct __Pyx_async_gen_as_async = {
};
};
#endif
#endif
PyTypeObject
__pyx_AsyncGenType_type
=
{
static
PyTypeObject
__pyx_AsyncGenType_type
=
{
PyVarObject_HEAD_INIT
(
&
PyType_Type
,
0
)
PyVarObject_HEAD_INIT
(
&
PyType_Type
,
0
)
"async_generator"
,
/* tp_name */
"async_generator"
,
/* tp_name */
sizeof
(
__pyx_PyAsyncGenObject
),
/* tp_basicsize */
sizeof
(
__pyx_PyAsyncGenObject
),
/* tp_basicsize */
...
@@ -562,7 +562,7 @@ static __Pyx_PyAsyncMethodsStruct __Pyx_async_gen_asend_as_async = {
...
@@ -562,7 +562,7 @@ static __Pyx_PyAsyncMethodsStruct __Pyx_async_gen_asend_as_async = {
};
};
PyTypeObject
__pyx__PyAsyncGenASendType_type
=
{
static
PyTypeObject
__pyx__PyAsyncGenASendType_type
=
{
PyVarObject_HEAD_INIT
(
&
PyType_Type
,
0
)
PyVarObject_HEAD_INIT
(
&
PyType_Type
,
0
)
"async_generator_asend"
,
/* tp_name */
"async_generator_asend"
,
/* tp_name */
sizeof
(
__pyx_PyAsyncGenASend
),
/* tp_basicsize */
sizeof
(
__pyx_PyAsyncGenASend
),
/* tp_basicsize */
...
@@ -680,7 +680,7 @@ __Pyx_async_gen_wrapped_val_traverse(__pyx__PyAsyncGenWrappedValue *o,
...
@@ -680,7 +680,7 @@ __Pyx_async_gen_wrapped_val_traverse(__pyx__PyAsyncGenWrappedValue *o,
}
}
PyTypeObject
__pyx__PyAsyncGenWrappedValueType_type
=
{
static
PyTypeObject
__pyx__PyAsyncGenWrappedValueType_type
=
{
PyVarObject_HEAD_INIT
(
&
PyType_Type
,
0
)
PyVarObject_HEAD_INIT
(
&
PyType_Type
,
0
)
"async_generator_wrapped_value"
,
/* tp_name */
"async_generator_wrapped_value"
,
/* tp_name */
sizeof
(
__pyx__PyAsyncGenWrappedValue
),
/* tp_basicsize */
sizeof
(
__pyx__PyAsyncGenWrappedValue
),
/* tp_basicsize */
...
@@ -949,7 +949,7 @@ static __Pyx_PyAsyncMethodsStruct __Pyx_async_gen_athrow_as_async = {
...
@@ -949,7 +949,7 @@ static __Pyx_PyAsyncMethodsStruct __Pyx_async_gen_athrow_as_async = {
};
};
PyTypeObject
__pyx__PyAsyncGenAThrowType_type
=
{
static
PyTypeObject
__pyx__PyAsyncGenAThrowType_type
=
{
PyVarObject_HEAD_INIT
(
&
PyType_Type
,
0
)
PyVarObject_HEAD_INIT
(
&
PyType_Type
,
0
)
"async_generator_athrow"
,
/* tp_name */
"async_generator_athrow"
,
/* tp_name */
sizeof
(
__pyx_PyAsyncGenAThrow
),
/* tp_basicsize */
sizeof
(
__pyx_PyAsyncGenAThrow
),
/* tp_basicsize */
...
...
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