Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Async generator/anext with default-tuple-value results in SystemError: <class 'StopIteration'> returned with exception set #128078

Closed
Assignees
picnixz
Labels
interpreter-core(Objects, Python, Grammar, and Parser dirs)type-bugAn unexpected behavior, bug, or error
@manuel-koch

Description

@manuel-koch

Bug report

Bug description:

I asked a question onstackoverflow because I found a strange error while writing code that makes use an async generator function and the built-inanext() function when using a tuple value for thedefault argument ofanext().

One of thestackoverflow answers contains a good analysis and a possible cause of the problem.

The failing code is the second line withanext():

importasyncioasyncdefgenerator(it=None):ifitisnotNone:yield (it,it)asyncdefmy_func():# results in a=1 b=1a,b=awaitanext(generator(1), (2,3))# results in no printingasyncfora,bingenerator():print(a,b)# raises exceptiona,b=awaitanext(generator(), (2,3))loop=asyncio.new_event_loop()loop.run_until_complete(my_func())

It raises this unexpected exception:

StopAsyncIterationThe above exception was the direct cause of the following exception:Traceback (most recent call last):  File"<stdin>", line 1,in<module>  File"/Users/manuel/.pyenv/versions/3.12.0/lib/python3.12/asyncio/base_events.py", line 664,in run_until_completereturnfuture.result()           ^^^^^^^^^^^^^^^  File"<stdin>", line 6,in my_funcSystemError:<class'StopIteration'> returned a result with an exceptionset

CPython versions tested on:

3.11, 3.12, 3.13

Operating systems tested on:

macOS

Linked PRs

Metadata

Metadata

Assignees

Labels

interpreter-core(Objects, Python, Grammar, and Parser dirs)type-bugAn unexpected behavior, bug, or error

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions


    [8]ページ先頭

    ©2009-2025 Movatter.jp