bpo-43352: Add a Barrier object in asyncio lib by YvesDup · Pull Request #24903 · python/cpython

added 7 commits

March 16, 2021 10:51
Add a Barrier object to asyncio synchronized primitives
Change after run make patchcheck
Add comment when testing self._state
Change if to while instruction  in _block method
Refactoring all test names of BarrierTests to be more readable
Add a method cancel_coros
Refactoring and simplifyiing some tests
Correction of RGX_REPR
after run python.bat Tools\scripts\patchcheck.py

@YvesDup YvesDup changed the title Fix issue 43352 bpo-43352: Add a Barrier object in asyncio lib

Mar 17, 2021

@YvesDup

@blurb-it

@YvesDup

@YvesDup

Add  Barrier object as a clone of threading.Barrier

@YvesDup

…thonGH-24903)

Add a test to check multiple reuses of a barrier object.

@YvesDup

…ythonGH-24903)

Remove `import coroutines`
Suppress trailing whitespaces

@YvesDup

@YvesDup

@YvesDup

asvetlov