[issue45146] Add a possibility for asyncio.Condition to determine the count of currently waiting consumers
Mykola Mokhnach added the comment: This improvement request is also applicable to other asyncio synchronization primitives that contain a waiting queue. -- ___ Python tracker <https://bugs.python.org/issue45
[issue45146] Add a possibility for asyncio.Condition to determine the count of currently waiting consumers
New submission from Mykola Mokhnach : Currently the asyncio.Condition class does not provide any properties that would allow to determine how many (if) consumers are waiting for the current condition. My scenario is the following: ``` ... FILE_STATS_CONDITIONS: Dict[str, asyncio.Condition