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
eca81040
Commit
eca81040
authored
Sep 12, 2017
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move error handling out of inlined function
parent
3f9c82d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
Cython/Utility/Coroutine.c
Cython/Utility/Coroutine.c
+9
-4
No files found.
Cython/Utility/Coroutine.c
View file @
eca81040
...
...
@@ -5,6 +5,13 @@ static CYTHON_INLINE PyObject* __Pyx_Generator_Yield_From(__pyx_CoroutineObject
//////////////////// GeneratorYieldFrom ////////////////////
//@requires: Generator
static
void
__PyxPyIter_CheckErrorAndDecref
(
PyObject
*
source
)
{
PyErr_Format
(
PyExc_TypeError
,
"iter() returned non-iterator of type '%.100s'"
,
Py_TYPE
(
source
)
->
tp_name
);
Py_DECREF
(
source
);
}
static
CYTHON_INLINE
PyObject
*
__Pyx_Generator_Yield_From
(
__pyx_CoroutineObject
*
gen
,
PyObject
*
source
)
{
PyObject
*
source_gen
,
*
retval
;
#ifdef __Pyx_Coroutine_USED
...
...
@@ -22,13 +29,11 @@ static CYTHON_INLINE PyObject* __Pyx_Generator_Yield_From(__pyx_CoroutineObject
if
(
unlikely
(
!
source_gen
))
return
NULL
;
if
(
unlikely
(
!
PyIter_Check
(
source_gen
)))
{
PyErr_Format
(
PyExc_TypeError
,
"iter() returned non-iterator of type '%.100s'"
,
Py_TYPE
(
source_gen
)
->
tp_name
);
Py_DECREF
(
source_gen
);
__PyxPyIter_CheckErrorAndDecref
(
source_gen
);
return
NULL
;
}
}
else
// CPython also allows non-iterable sequences to be iterated over
#endif
{
source_gen
=
PyObject_GetIter
(
source
);
...
...
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