summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_locks.py
Commit message (Expand)AuthorAgeFilesLines
* gh-93247: Fix assert function in asyncio locks test (#93248)Cyker Way2022-06-061-1/+1
* gh-93124: Fix typos in comments (GH-93125)Akuli2022-05-251-2/+2
* bpo-43352: Add a Barrier object in asyncio lib (GH-24903)Duprat2022-03-251-2/+576
* bpo-45997: Fix asyncio.Semaphore re-acquiring order (GH-31910)Andrew Svetlov2022-03-221-0/+25
* bpo-46796: Simplify handling of removed parameter "loop" in asyncio (GH-31431)Serhiy Storchaka2022-02-211-2/+2
* bpo-46129: Rewrite asyncio.locks tests with IsolatedAsyncioTestCase (GH-30198)Andrew Svetlov2021-12-191-260/+212
* bpo-45416: Fix use of asyncio.Condition() with explicit Lock objects (GH-28850)Joongi Kim2021-10-101-13/+57
* bpo-43216: Remove @asyncio.coroutine (GH-26369)Illia Volochii2021-07-011-22/+16
* bpo-42392: Improve removal of *loop* parameter in asyncio primitives (GH-23499)Yurii Karabas2020-11-251-0/+17
* bpo-42392: Remove loop parameter form asyncio locks and Queue (#23420)Yurii Karabas2020-11-241-147/+58
* bpo-34793: Drop old-style context managers in asyncio.locks (GH-17533)Andrew Svetlov2020-02-011-131/+34
* bpo-38107: Replace direct future and task contructor calls with factories in ...Andrew Svetlov2019-09-111-38/+38
* bpo-36373: Fix deprecation warnings (GH-15889)Andrew Svetlov2019-09-111-4/+3
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [loc...Emmanuel Arias2019-09-101-74/+124
* bpo-36921: Deprecate @coroutine for sake of async def (GH-13346)Andrew Svetlov2019-05-161-38/+46
* bpo-34728: Fix asyncio tests to run under "-Werror" (GH-9661)Yury Selivanov2018-10-021-4/+3
* bpo-33562: Check the global asyncio event loop policy isn't set after any tes...Brett Cannon2018-06-021-0/+4
* bpo-32751: Wait for task cancellation in asyncio.wait_for() (GH-7216)Elvis Pranskevichus2018-05-291-0/+13
* bpo-32841: Fix cancellation in awaiting asyncio.Condition (#5665)Bar Harel2018-02-141-4/+27
* bpo-32734: Fix asyncio.Lock multiple acquire safety issue (GH-5466)Bar Harel2018-02-021-0/+50
* bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785)Yury Selivanov2017-12-111-1/+1
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-101-2/+2
* bpo-32253: Deprecate with statement and bare await for asyncio locks (GH-4764)Andrew Svetlov2017-12-091-7/+40
* bpo-32193: Convert asyncio to async/await usage (#4753)Andrew Svetlov2017-12-081-73/+52
* Fix waiter cancellation in asyncio.Lock (#1031)Mathieu Sornay2017-06-091-0/+22
* Issue #28613: Fix get_event_loop() to return the current loopYury Selivanov2016-11-041-0/+4
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-071-2/+2
* Issue #22970: asyncio: Fix inconsistency cancelling Condition.wait.Yury Selivanov2016-06-111-0/+25
* Also rewrote the guts of asyncio.Semaphore (patch by manipopopo).Guido van Rossum2015-09-291-9/+43
* asyncio: sync with TulipVictor Stinner2014-07-291-1/+4
* Accept optional lock object in Condition ctor (tulip issue #198)Andrew Svetlov2014-07-261-0/+12
* Issue #21163, asyncio: Fix some "Task was destroyed but it is pending!" logs ...Victor Stinner2014-06-251-0/+1
* asyncio: Refactor tests: add a base TestCase classVictor Stinner2014-06-171-48/+20
* asyncio: Replace "unittest.mock" with "mock" in unit testsVictor Stinner2014-02-261-10/+10
* asyncio: Locks refactor: use a separate context manager; remove Semaphore._lo...Guido van Rossum2014-01-261-0/+35
* Update asyncio from the Tulip projectVictor Stinner2014-01-251-123/+120
* asyncio: Change bounded semaphore into a subclass, like threading.[Bounded]Se...Guido van Rossum2013-11-231-1/+1
* asyncio: Make Semaphore(0) work properly.Guido van Rossum2013-11-211-0/+4
* asyncio: Locks improvements by Arnaud Faure: better repr(), change Conditio\Guido van Rossum2013-11-041-1/+70
* Initial checkin of asyncio package (== Tulip, == PEP 3156).Guido van Rossum2013-10-171-0/+765