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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
9627499b
Commit
9627499b
authored
Aug 20, 2018
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix C macro usage.
parent
34876a2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Cython/Utility/Coroutine.c
Cython/Utility/Coroutine.c
+2
-2
No files found.
Cython/Utility/Coroutine.c
View file @
9627499b
...
...
@@ -1449,7 +1449,7 @@ static PyTypeObject __pyx_CoroutineAwaitType_type = {
#endif
};
#if PY_VERSION_HEX < 0x030500B1 ||
__Pyx_IterableCoroutine_USED
|| CYTHON_USE_ASYNC_SLOTS
#if PY_VERSION_HEX < 0x030500B1 ||
defined(__Pyx_IterableCoroutine_USED)
|| CYTHON_USE_ASYNC_SLOTS
static
CYTHON_INLINE
PyObject
*
__Pyx__Coroutine_await
(
PyObject
*
coroutine
)
{
__pyx_CoroutineAwaitObject
*
await
=
PyObject_GC_New
(
__pyx_CoroutineAwaitObject
,
__pyx_CoroutineAwaitType
);
if
(
unlikely
(
!
await
))
return
NULL
;
...
...
@@ -1466,7 +1466,7 @@ static PyObject *__Pyx_Coroutine_await_method(PyObject *coroutine, CYTHON_UNUSED
}
#endif
#if
__Pyx_IterableCoroutine_USED
|| CYTHON_USE_ASYNC_SLOTS
#if
defined(__Pyx_IterableCoroutine_USED)
|| CYTHON_USE_ASYNC_SLOTS
static
PyObject
*
__Pyx_Coroutine_await
(
PyObject
*
coroutine
)
{
if
(
unlikely
(
!
coroutine
||
!
__Pyx_Coroutine_Check
(
coroutine
)))
{
PyErr_SetString
(
PyExc_TypeError
,
"invalid input, expected coroutine"
);
...
...
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