Pythonのasyncが予約語になった経緯
タグ
ページを作った理由
何故このタイミングで?という疑問が出た
リンク集
参考になると思われるリンクを集めておく
Backwards incompatible syntax changes:
async and await are now reserved keywords.
理由に!ついて!触れられて!ない!
In principle, asynchronous generator expressions are allowed in any context. However, in Python 3.6, due to async and await soft-keyword status, asynchronous generator expressions are only allowed in an async def function. Once async and await become reserved keywords in Python 3.7, this restriction will be removed.
というかそのものが書いてあるかな、これは?
壊れたライブラリ群
code:壊れた箇所.py
def write(self, data, async=False):