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

Python 3.12.0a7 can fail to catch exceptions when an iterator is involved #103488

Closed
Assignees
markshannon
Labels
3.12only security fixesinterpreter-core(Objects, Python, Grammar, and Parser dirs)release-blockertype-bugAn unexpected behavior, bug, or error
@mattclay

Description

@mattclay

Bug report

Python 3.12.0a7 (at least as of commitd65ed69) can fail to catch exceptions when an iterator is involved. The following code works on Python 3.11 but theValueError is uncaught on Python 3.12:

#!/usr/bin/env pythondefdo_work():yieldraiseValueError()defmain():try:for_indo_work():ifTrueisFalse:returnexceptValueError:passif__name__=='__main__':main()

With this code inrepro.py the following traceback is shown on Python 3.12:

Traceback (most recent call last):  File "//repro.py", line 18, in <module>    main()  File "//repro.py", line 12, in main    return  File "//repro.py", line 5, in do_work    raise ValueError()ValueError

No error or output occurs under Python 3.11.

Your environment

Tested on Ubuntu 20.04.5 using the deadsnakes nightly build: python3.12 - 3.12.0~a7-98-gd65ed693a8-1+focal1

Linked PRs

Metadata

Metadata

Assignees

Labels

3.12only security fixesinterpreter-core(Objects, Python, Grammar, and Parser dirs)release-blockertype-bugAn unexpected behavior, bug, or error

Projects

Status

Done

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions


    [8]ページ先頭

    ©2009-2025 Movatter.jp