`sys.exit` unpacks its argument if it is a 0- or 1-element tuple
オープン
@picnixz がすでに取り組んでいます。
2025年6月21日 から。
interpreter-core
type-bug
- 主要言語
- Python
- スター
- 77.2k
- フォーク
- 35.9k
- PR マージ指標
- PR 指標を取得中
説明
Bug report
Bug description:
The documentation of sys.exit says “The optional argument arg can be an integer giving the exit status (defaulting to zero), or another type of object. [...] If another type of object is passed, None is equivalent to passing zero, and any other object is printed to stderr and results in an exit code of 1.” This is no longer true for 0- and 1-element tuples in Python 3.12 and later. It acts like the argument is unpacked: sys.exit(()) is treated like sys.exit() and sys.exit((x,)) is treated like sys.exit(x).
$ python3.11 -c 'import sys; sys.exit(())'; echo $?
()
1
$ python3.12 -c 'import sys; sys.exit(())'; echo $?
0
$ python3.11 -c 'import sys; sys.exit((2,))'; echo $?
(2,)
1
$ python3.12 -c 'import sys; sys.exit((2,))'; echo $?
2
CPython versions tested on:
3.12, 3.13, CPython main branch
Operating systems tested on:
macOS
Linked PRs
- gh-135789
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
評価
この issue はまだ評価されていません。