summaryrefslogtreecommitdiff
path: root/Lib/test/test_coroutines.py
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-33363: raise SyntaxError for async for/with outside async functions...Zsolt Dollenstein2018-04-271-1/+16
* bpo-29922: Add more tests for error messages in 'async with'. (GH-6370)Miss Islington (bot)2018-04-041-1/+41
* bpo-29922: Improve error messages in 'async with' (GH-6352)Miss Islington (bot)2018-04-041-4/+9
* bpo-33041: Fixed jumping if the function contains an "async for" loop. (GH-6154)Serhiy Storchaka2018-03-231-0/+30
* bpo-32733: Make test_coroutines robust against -Werror (GH-5487) (GH-5490)Miss Islington (bot)2018-02-011-7/+2
* bpo-32703: Fix coroutine resource warning in case where there's an error (GH-...Yury Selivanov2018-01-291-33/+63
* bpo-32591: silence deprecation warnings in test_coroutine (GH-5412)Nathaniel J. Smith2018-01-281-10/+20
* bpo-32591: fix abort in _PyErr_WarnUnawaitedCoroutine during shutdown (#5337)Nathaniel J. Smith2018-01-261-0/+22
* bpo-32591: Add native coroutine origin tracking (#5250)Nathaniel J. Smith2018-01-211-2/+129
* bpo-31708: Allow async generator expressions in synchronous functions (#3905)Yury Selivanov2017-10-061-0/+8
* bpo-31709: Drop support for asynchronous __aiter__. (#3903)Yury Selivanov2017-10-061-91/+19
* bpo-30406: Make async and await proper keywords (#1669)Jelle Zijlstra2017-10-051-18/+6
* bpo-29845: Mark tests that use _testcapi as CPython-only (#711)Serhiy Storchaka2017-03-191-0/+1
* Fix wrapping into StopIteration of return values in generators and coroutines...Yury Selivanov2017-03-121-0/+15
* bpo-28893: Set __cause__ for errors in async iteration protocol (#407)Yury Selivanov2017-03-021-0/+38
* Issue #27243: Change PendingDeprecationWarning -> DeprecationWarning.Yury Selivanov2016-11-081-9/+9
* Issue #23996: Added _PyGen_SetStopIterationValue for safe raisingSerhiy Storchaka2016-11-061-0/+61
|\
| * Issue #23996: Added _PyGen_SetStopIterationValue for safe raisingSerhiy Storchaka2016-11-061-0/+61
* | Issue #26182: Raise DeprecationWarning for improper use of async/await keywordsYury Selivanov2016-09-151-42/+95
* | Issue #28008: Implement PEP 530 -- asynchronous comprehensions.Yury Selivanov2016-09-091-32/+292
* | Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-081-6/+0
* | #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-081-4/+4
|/
* capture stderr to silence output during test_coroutines (closes #27968)Benjamin Peterson2016-09-071-1/+2
* do not allow _PyGen_Finalize to fail (closes #27811)Benjamin Peterson2016-09-051-0/+8
* Fix typos and English grammar in documentation and code commentMartin Panter2016-06-121-1/+1
* Issue #27243: Fix __aiter__ protocolYury Selivanov2016-06-091-20/+78
* coroutines: Error when awaiting on coroutine that's being awaitedYury Selivanov2016-03-021-0/+18
* Issue #25887: Raise a RuntimeError when a coroutine is awaited more than once.Yury Selivanov2016-02-131-0/+141
* Issue #22995: Default implementation of __reduce__ and __reduce_ex__ nowSerhiy Storchaka2015-11-121-0/+30
* Close #25367: Fix test_coroutines()Victor Stinner2015-10-111-1/+1
* Close #25367: Fix test_coroutines with no thread supportVictor Stinner2015-10-111-1/+3
* Issue #24619: Simplify async/await tokenization.Yury Selivanov2015-07-231-0/+1
* Issue #24687: Plug refleak on SyntaxError in function parameters annotations.Yury Selivanov2015-07-231-0/+4
* Issue #24619: More tests; fix nits in compiler.cYury Selivanov2015-07-221-4/+5
* Issue #24619: New approach for tokenizing async/await.Yury Selivanov2015-07-221-8/+218
* Issue #24450: Add gi_yieldfrom to generators; cr_await to coroutines.Yury Selivanov2015-07-031-0/+30
* Issue #24400: Add one more unittest for CoroutineType.__await__Yury Selivanov2015-07-011-0/+34
* test_coroutines: remove whitespaceYury Selivanov2015-06-301-1/+1
* Issue #24528: Improve error message for awaits in comprehensionsYury Selivanov2015-06-301-0/+10
* Issue #24400: Introduce a distinct type for 'async def' coroutines.Yury Selivanov2015-06-221-14/+146
* Issue 24374: Plug refleak in set_coroutine_wrapperYury Selivanov2015-06-041-2/+2
* Issue 24342: Let wrapper set by sys.set_coroutine_wrapper fail gracefullyYury Selivanov2015-06-021-0/+20
* Issue 24226: Fix parsing of many sequential one-line 'def' statements.Yury Selivanov2015-05-181-0/+23
* Issue 24017: More tests for 'async for' and 'async with'.Yury Selivanov2015-05-131-0/+35
* Clean up test_coroutines a bit.Zachary Ware2015-05-131-12/+3
* Issue 24017: fix for "async with" refcountingNick Coghlan2015-05-131-1/+117
* Issue #24017: Unset asyncio event loop after test.Yury Selivanov2015-05-121-1/+3
* PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-0/+862