Skip to content

[3.14] GH-135171: Revert async generator expressions behavior #135352

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: 3.14
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Lib/test/test_asyncgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -1835,6 +1835,20 @@ async def run():
res = self.loop.run_until_complete(run())
self.assertEqual(res, [i * 2 for i in range(1, 10)])

def test_async_gen_expression_incorrect(self):
async def ag():
yield 42

async def run(arg):
(x async for x in arg)

err_msg_async = "'async for' requires an object with " \
"__aiter__ method, got .*"

self.loop.run_until_complete(run(ag()))
with self.assertRaisesRegex(TypeError, err_msg_async):
self.loop.run_until_complete(run(None))

def test_asyncgen_nonstarted_hooks_are_cancellable(self):
# See https://bugs.python.org/issue38013
messages = []
Expand Down
13 changes: 9 additions & 4 deletions Lib/test/test_coroutines.py
Original file line number Diff line number Diff line change
Expand Up @@ -2267,7 +2267,7 @@ def c():

def test_call_aiter_once_in_comprehension(self):

class Iterator:
class AsyncIterator:

def __init__(self):
self.val = 0
Expand All @@ -2283,12 +2283,17 @@ async def __anext__(self):
class C:

def __aiter__(self):
return Iterator()
return AsyncIterator()

async def run():
async def run_listcomp():
return [i async for i in C()]

self.assertEqual(run_async(run()), ([], [1,2]))
async def run_asyncgen():
ag = (i async for i in C())
return [i async for i in ag]

self.assertEqual(run_async(run_listcomp()), ([], [1, 2]))
self.assertEqual(run_async(run_asyncgen()), ([], [1, 2]))


@unittest.skipIf(
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ class C:
def __iter__(self):
return Iterator()

self.assertEqual([1,2], list(i for i in C()))
self.assertEqual([1, 2], list(i for i in C()))


class ModifyUnderlyingIterableTest(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_listcomps.py
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ class C:
def __iter__(self):
return Iterator()

self.assertEqual([1,2], [i for i in C()])
self.assertEqual([1, 2], [i for i in C()])

__test__ = {'doctests' : doctests}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Reverts the behavior of async generator expressions when created with object
w/o __aiter__ method to the pre-3.13 behavior of raising a TypeError.
31 changes: 21 additions & 10 deletions Python/codegen.c
Original file line number Diff line number Diff line change
Expand Up @@ -4411,7 +4411,6 @@ codegen_sync_comprehension_generator(compiler *c, location loc,

comprehension_ty gen = (comprehension_ty)asdl_seq_GET(generators,
gen_index);
int is_outer_genexpr = gen_index == 0 && type == COMP_GENEXP;
if (!iter_on_stack) {
if (gen_index == 0) {
assert(METADATA(c)->u_argcount == 1);
Expand Down Expand Up @@ -4442,15 +4441,13 @@ codegen_sync_comprehension_generator(compiler *c, location loc,
}
if (IS_JUMP_TARGET_LABEL(start)) {
VISIT(c, expr, gen->iter);
ADDOP(c, LOC(gen->iter), GET_ITER);
}
}
}

if (IS_JUMP_TARGET_LABEL(start)) {
depth++;
if (!is_outer_genexpr) {
ADDOP(c, LOC(gen->iter), GET_ITER);
}
USE_LABEL(c, start);
ADDOP_JUMP(c, LOC(gen->iter), FOR_ITER, anchor);
}
Expand Down Expand Up @@ -4544,9 +4541,9 @@ codegen_async_comprehension_generator(compiler *c, location loc,
else {
/* Sub-iter - calculate on the fly */
VISIT(c, expr, gen->iter);
ADDOP(c, LOC(gen->iter), GET_AITER);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm, is this change necessary? I think the test passes without it.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think so. There was a bug in previous commit. I've reverted related logic in codegen.c.

}
}
ADDOP(c, LOC(gen->iter), GET_AITER);

USE_LABEL(c, start);
/* Runtime will push a block here, so we need to account for that */
Expand Down Expand Up @@ -4758,6 +4755,19 @@ pop_inlined_comprehension_state(compiler *c, location loc,
return SUCCESS;
}

static inline int
codegen_comprehension_iter(compiler *c, comprehension_ty comp)
{
VISIT(c, expr, comp->iter);
if (comp->is_async) {
ADDOP(c, LOC(comp->iter), GET_AITER);
}
else {
ADDOP(c, LOC(comp->iter), GET_ITER);
}
return SUCCESS;
}

static int
codegen_comprehension(compiler *c, expr_ty e, int type,
identifier name, asdl_comprehension_seq *generators, expr_ty elt,
Expand All @@ -4776,9 +4786,10 @@ codegen_comprehension(compiler *c, expr_ty e, int type,
location loc = LOC(e);

outermost = (comprehension_ty) asdl_seq_GET(generators, 0);
int is_sync_genexpr = type == COMP_GENEXP && !outermost->is_async;
if (is_inlined) {
VISIT(c, expr, outermost->iter);
if (codegen_comprehension_iter(c, outermost)) {
goto error;
}
if (push_inlined_comprehension_state(c, loc, entry, &inline_state)) {
goto error;
}
Expand Down Expand Up @@ -4852,10 +4863,10 @@ codegen_comprehension(compiler *c, expr_ty e, int type,
}
Py_CLEAR(co);

VISIT(c, expr, outermost->iter);
if (is_sync_genexpr) {
ADDOP(c, loc, GET_ITER);
if (codegen_comprehension_iter(c, outermost)) {
goto error;
}

ADDOP_I(c, loc, CALL, 0);

if (is_async_comprehension && type != COMP_GENEXP) {
Expand Down
Loading