summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-11-16 18:16:17 -0500
committerYury Selivanov <yury@magic.io>2016-11-16 18:16:17 -0500
commitcc830f1d735521ea2cc27d1240b543dfbdd29c28 (patch)
tree97028b83cb316bceeefc5d83b52d60cfdb0ac9a1 /Objects
parent74140b3d7d05e35f29664ec08a4dc7d197c0a661 (diff)
downloadcpython-cc830f1d735521ea2cc27d1240b543dfbdd29c28.tar.gz
Issue #28721: Fix asynchronous generators aclose() and athrow()
Diffstat (limited to 'Objects')
-rw-r--r--Objects/genobject.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/Objects/genobject.c b/Objects/genobject.c
index ddf72ccf69..558f809b02 100644
--- a/Objects/genobject.c
+++ b/Objects/genobject.c
@@ -1931,9 +1931,17 @@ yield_close:
return NULL;
check_error:
- if (PyErr_ExceptionMatches(PyExc_StopAsyncIteration)
- || PyErr_ExceptionMatches(PyExc_GeneratorExit)
- ) {
+ if (PyErr_ExceptionMatches(PyExc_StopAsyncIteration)) {
+ o->agt_state = AWAITABLE_STATE_CLOSED;
+ if (o->agt_args == NULL) {
+ /* when aclose() is called we don't want to propagate
+ StopAsyncIteration; just raise StopIteration, signalling
+ that 'aclose()' is done. */
+ PyErr_Clear();
+ PyErr_SetNone(PyExc_StopIteration);
+ }
+ }
+ else if (PyErr_ExceptionMatches(PyExc_GeneratorExit)) {
o->agt_state = AWAITABLE_STATE_CLOSED;
PyErr_Clear(); /* ignore these errors */
PyErr_SetNone(PyExc_StopIteration);