Allow Return Statements with Values in Asynchronous Generators
オープン
まだ誰も着手していません。
type-feature
- 主要言語
- Python
- スター
- 77.2k
- フォーク
- 35.9k
- PR マージ指標
- PR 指標を取得中
説明
Feature or enhancement
Proposal:
async def gen():
yield 1
yield 2
return 3
async def runner():
g = gen()
while True:
try:
a = await g.__anext__()
print("yielded", a)
except StopAsyncIteration as e:
print("returned", e.value)
break
asyncio.run(runner())
# yielded 1
# yielded 2
# returned 3
The proposal adds optional return values to async generators.
This feature should be implemented to achieve syntactic and functional parity with synchronous generators.
Today:
def gen():
yield 1
yield 2
return 3
async def agen():
yield 1
yield 2
return 3 # Syntax error
Proposal:
def gen():
yield 1
yield 2
return 3
async def agen():
yield 1
yield 2
return 3
It can be implemented trivially in CPython as a nonbreaking change.
Has this already been discussed elsewhere?
I have already discussed this feature proposal on Discourse
Links to previous discussion of this feature:
https://discuss.python.org/t/allow-return-statements-with-values-in-asynchronous-generators/66886
Linked PRs
- gh-125401
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず、リンクされている Discourse の議論とリンクされている PR gh-125401 を読んで、提案されている言語とランタイムの変更を理解してください。Issue にある非同期ジェネレーターの例を動作の基準として使用してください。完了とは、非同期ジェネレーターが値を返せ、その値を StopAsyncIteration を通じて確認でき、既存の動作を壊さないことです。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- compilers
- issue の種類
- 機能追加
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 20/100