[issue43352] Add a Barrier object in asyncio lib

2022-03-25 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.10, Python 3.6, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker __

[issue43352] Add a Barrier object in asyncio lib

2022-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset d03acd7270d66ddb8e987f9743405147ecc15087 by Duprat in branch 'main': bpo-43352: Add a Barrier object in asyncio lib (GH-24903) https://github.com/python/cpython/commit/d03acd7270d66ddb8e987f9743405147ecc15087 -- __

[issue43352] Add a Barrier object in asyncio lib

2021-06-23 Thread Yves Duprat
Yves Duprat added the comment: This last version includes the propositions, remarks from @asveltov and @eamanu This PR is always stuck, so could you please approve the 3 running workflows ? -- status: pending -> open ___ Python tracker

[issue43352] Add a Barrier object in asyncio lib

2021-04-28 Thread Yves Duprat
Yves Duprat added the comment: An update was submitted on PR. Modified python files are: file lib/asyncio/locks.py file lib/test/test_asyncio/test_locks.py And related documentation files file Doc/library/asyncio-api-index.rst file Doc/library/asyncio-sync.rst Please, could you

[issue43352] Add a Barrier object in asyncio lib

2021-03-17 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 4.0 -> 5.0 pull_requests: +23666 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24903 ___ Python tracker _

[issue43352] Add a Barrier object in asyncio lib

2021-03-05 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue43352] Add a Barrier object in asyncio lib

2021-03-01 Thread Yves Duprat
New submission from Yves Duprat : Add a synchronized primitive Barrier in asyncio, in order to be consistent with them we have for threading. Barrier object will have a similar design from that of threading lib. (May be we have to think about a backport ?) Initial discussion started here: h