aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_coroutines.py
Commit message (Expand)AuthorAge
* Issue #28008: Implement PEP 530 -- asynchronous comprehensions.Yury Selivanov2016-09-09
* Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-08
* #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-08
* capture stderr to silence output during test_coroutines (closes #27968)Benjamin Peterson2016-09-07
* do not allow _PyGen_Finalize to fail (closes #27811)Benjamin Peterson2016-09-05
* Fix typos and English grammar in documentation and code commentMartin Panter2016-06-12
* Issue #27243: Fix __aiter__ protocolYury Selivanov2016-06-09
* coroutines: Error when awaiting on coroutine that's being awaitedYury Selivanov2016-03-02
* Issue #25887: Raise a RuntimeError when a coroutine is awaited more than once.Yury Selivanov2016-02-13
* Issue #22995: Default implementation of __reduce__ and __reduce_ex__ nowSerhiy Storchaka2015-11-12
* Close #25367: Fix test_coroutines()Victor Stinner2015-10-11
* Close #25367: Fix test_coroutines with no thread supportVictor Stinner2015-10-11
* Issue #24619: Simplify async/await tokenization.Yury Selivanov2015-07-23
* Issue #24687: Plug refleak on SyntaxError in function parameters annotations.Yury Selivanov2015-07-23
* Issue #24619: More tests; fix nits in compiler.cYury Selivanov2015-07-22
* Issue #24619: New approach for tokenizing async/await.Yury Selivanov2015-07-22
* Issue #24450: Add gi_yieldfrom to generators; cr_await to coroutines.Yury Selivanov2015-07-03
* Issue #24400: Add one more unittest for CoroutineType.__await__Yury Selivanov2015-07-01
* test_coroutines: remove whitespaceYury Selivanov2015-06-30
* Issue #24528: Improve error message for awaits in comprehensionsYury Selivanov2015-06-30
* Issue #24400: Introduce a distinct type for 'async def' coroutines.Yury Selivanov2015-06-22
* Issue 24374: Plug refleak in set_coroutine_wrapperYury Selivanov2015-06-04
* Issue 24342: Let wrapper set by sys.set_coroutine_wrapper fail gracefullyYury Selivanov2015-06-02
* Issue 24226: Fix parsing of many sequential one-line 'def' statements.Yury Selivanov2015-05-18
* Issue 24017: More tests for 'async for' and 'async with'.Yury Selivanov2015-05-13
* Clean up test_coroutines a bit.Zachary Ware2015-05-13
* Issue 24017: fix for "async with" refcountingNick Coghlan2015-05-13
* Issue #24017: Unset asyncio event loop after test.Yury Selivanov2015-05-12
* PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-11