Skip to content
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

[3.13] gh-131670: Fix crash in anext() when __anext__ is sync and raises (GH-131682) #131686

Merged
merged 1 commit into from
Mar 24, 2025
Merged
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
20 changes: 20 additions & 0 deletions Lib/test/test_asyncgen.py
Original file line number Diff line number Diff line change
@@ -1169,6 +1169,26 @@ async def run():

self.loop.run_until_complete(run())

def test_sync_anext_raises_exception(self):
# See: https://github.com/python/cpython/issues/131670
msg = 'custom'
for exc_type in [
StopAsyncIteration,
StopIteration,
ValueError,
Exception,
]:
exc = exc_type(msg)
with self.subTest(exc=exc):
class A:
def __anext__(self):
raise exc

with self.assertRaisesRegex(exc_type, msg):
anext(A())
with self.assertRaisesRegex(exc_type, msg):
anext(A(), 1)

def test_async_gen_asyncio_anext_stopiteration(self):
async def foo():
try:
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix :func:`anext` failing on sync :meth:`~object.__anext__` raising an exception.
3 changes: 3 additions & 0 deletions Python/bltinmodule.c
Original file line number Diff line number Diff line change
@@ -1737,6 +1737,9 @@ builtin_anext_impl(PyObject *module, PyObject *aiterator,
}

awaitable = (*t->tp_as_async->am_anext)(aiterator);
if (awaitable == NULL) {
return NULL;
}
if (default_value == NULL) {
return awaitable;
}
Loading