Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
ee5ecc9d
Commit
ee5ecc9d
authored
Mar 30, 2014
by
Paul Sokolovsky
Browse files
objgenerator.throw: Instantiate if exception type passed, just as "raise".
Caught by CPython test_pep380.py.
parent
9a54a223
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/objgenerator.c
View file @
ee5ecc9d
...
...
@@ -162,6 +162,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_2(gen_instance_send_obj, gen_instance_send);
STATIC
mp_obj_t
gen_instance_close
(
mp_obj_t
self_in
);
STATIC
mp_obj_t
gen_instance_throw
(
uint
n_args
,
const
mp_obj_t
*
args
)
{
mp_obj_t
exc
=
(
n_args
==
2
)
?
args
[
1
]
:
args
[
2
];
exc
=
rt_make_raise_obj
(
exc
);
if
(
mp_obj_is_subclass_fast
(
mp_obj_get_type
(
exc
),
&
mp_type_GeneratorExit
))
{
// Throwing GeneratorExit is equivalent of calling close aka
// GeneratorExit should be handled specially
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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