summaryrefslogtreecommitdiff
path: root/Lib/test/test_asyncio/test_locks.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-38107: Replace direct future and task contructor calls with factories in ...Miss Islington (bot)2019-09-111-38/+38
* [3.8] bpo-36373: Fix deprecation warnings (GH-15889) (GH-15901)Andrew Svetlov2019-09-111-4/+3
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [lock...Miss Islington (bot)2019-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-011-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-091-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-181-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-251-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