New submission from Jason Fried <m...@jasonfried.info>:

In 3.9 we can remove the deprecated pattern for accepting __enter__ and 
__exit__ for locks.  This will free up __await__ for Condition to use for 
replacing .wait() which is wart from before awaitables. 

My new proposed behavior is

await cond 

which would be equivalent of:

async with cond:
    await cond.wait()

----------
components: asyncio
messages: 316848
nosy: asvetlov, fried, lukasz.langa, yselivanov
priority: normal
severity: normal
status: open
title: asyncio.Condition should become awaitable in 3.9

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33546>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to