| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-31708: Allow async generator expressions in synchronous functions (#3905) | Yury Selivanov | 2017-10-06 | 1 | -0/+8 |
|
|
* | bpo-31709: Drop support for asynchronous __aiter__. (#3903) | Yury Selivanov | 2017-10-06 | 1 | -91/+19 |
|
|
* | bpo-30406: Make async and await proper keywords (#1669) | Jelle Zijlstra | 2017-10-06 | 1 | -18/+6 |
|
|
* | bpo-29845: Mark tests that use _testcapi as CPython-only (#711) | Serhiy Storchaka | 2017-03-19 | 1 | -0/+1 |
|
|
* | Fix wrapping into StopIteration of return values in generators and coroutines... | Yury Selivanov | 2017-03-12 | 1 | -0/+15 |
|
|
* | bpo-28893: Set __cause__ for errors in async iteration protocol (#407) | Yury Selivanov | 2017-03-03 | 1 | -0/+38 |
|
|
* | Issue #27243: Change PendingDeprecationWarning -> DeprecationWarning. | Yury Selivanov | 2016-11-08 | 1 | -9/+9 |
|
|
* | Issue #23996: Added _PyGen_SetStopIterationValue for safe raising | Serhiy Storchaka | 2016-11-06 | 1 | -0/+61 |
|\ |
|
| * | Issue #23996: Added _PyGen_SetStopIterationValue for safe raising | Serhiy Storchaka | 2016-11-06 | 1 | -0/+61 |
|
|
* | | Issue #26182: Raise DeprecationWarning for improper use of async/await keywords | Yury Selivanov | 2016-09-15 | 1 | -42/+95 |
|
|
* | | Issue #28008: Implement PEP 530 -- asynchronous comprehensions. | Yury Selivanov | 2016-09-09 | 1 | -32/+292 |
|
|
* | | Issue #28003: Implement PEP 525 -- Asynchronous Generators. | Yury Selivanov | 2016-09-09 | 1 | -6/+0 |
|
|
* | | #27364: fix "incorrect" uses of escape character in the stdlib. | R David Murray | 2016-09-08 | 1 | -4/+4 |
|/ |
|
* | capture stderr to silence output during test_coroutines (closes #27968) | Benjamin Peterson | 2016-09-07 | 1 | -1/+2 |
|
|
* | do not allow _PyGen_Finalize to fail (closes #27811) | Benjamin Peterson | 2016-09-05 | 1 | -0/+8 |
|
|
* | Fix typos and English grammar in documentation and code comment | Martin Panter | 2016-06-12 | 1 | -1/+1 |
|
|
* | Issue #27243: Fix __aiter__ protocol | Yury Selivanov | 2016-06-09 | 1 | -20/+78 |
|
|
* | coroutines: Error when awaiting on coroutine that's being awaited | Yury Selivanov | 2016-03-02 | 1 | -0/+18 |
|
|
* | Issue #25887: Raise a RuntimeError when a coroutine is awaited more than once. | Yury Selivanov | 2016-02-13 | 1 | -0/+141 |
|
|
* | Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now | Serhiy Storchaka | 2015-11-12 | 1 | -0/+30 |
|
|
* | Close #25367: Fix test_coroutines() | Victor Stinner | 2015-10-11 | 1 | -1/+1 |
|
|
* | Close #25367: Fix test_coroutines with no thread support | Victor Stinner | 2015-10-11 | 1 | -1/+3 |
|
|
* | Issue #24619: Simplify async/await tokenization. | Yury Selivanov | 2015-07-23 | 1 | -0/+1 |
|
|
* | Issue #24687: Plug refleak on SyntaxError in function parameters annotations. | Yury Selivanov | 2015-07-23 | 1 | -0/+4 |
|
|
* | Issue #24619: More tests; fix nits in compiler.c | Yury Selivanov | 2015-07-22 | 1 | -4/+5 |
|
|
* | Issue #24619: New approach for tokenizing async/await. | Yury Selivanov | 2015-07-22 | 1 | -8/+218 |
|
|
* | Issue #24450: Add gi_yieldfrom to generators; cr_await to coroutines. | Yury Selivanov | 2015-07-03 | 1 | -0/+30 |
|
|
* | Issue #24400: Add one more unittest for CoroutineType.__await__ | Yury Selivanov | 2015-07-01 | 1 | -0/+34 |
|
|
* | test_coroutines: remove whitespace | Yury Selivanov | 2015-06-30 | 1 | -1/+1 |
|
|
* | Issue #24528: Improve error message for awaits in comprehensions | Yury Selivanov | 2015-06-30 | 1 | -0/+10 |
|
|
* | Issue #24400: Introduce a distinct type for 'async def' coroutines. | Yury Selivanov | 2015-06-22 | 1 | -14/+146 |
|
|
* | Issue 24374: Plug refleak in set_coroutine_wrapper | Yury Selivanov | 2015-06-04 | 1 | -2/+2 |
|
|
* | Issue 24342: Let wrapper set by sys.set_coroutine_wrapper fail gracefully | Yury Selivanov | 2015-06-02 | 1 | -0/+20 |
|
|
* | Issue 24226: Fix parsing of many sequential one-line 'def' statements. | Yury Selivanov | 2015-05-18 | 1 | -0/+23 |
|
|
* | Issue 24017: More tests for 'async for' and 'async with'. | Yury Selivanov | 2015-05-13 | 1 | -0/+35 |
|
|
* | Clean up test_coroutines a bit. | Zachary Ware | 2015-05-13 | 1 | -12/+3 |
|
|
* | Issue 24017: fix for "async with" refcounting | Nick Coghlan | 2015-05-13 | 1 | -1/+117 |
|
|
* | Issue #24017: Unset asyncio event loop after test. | Yury Selivanov | 2015-05-12 | 1 | -1/+3 |
|
|
* | PEP 0492 -- Coroutines with async and await syntax. Issue #24017. | Yury Selivanov | 2015-05-12 | 1 | -0/+862 |
|
|