Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-30773: Fix ag_running; prohibit running athrow/asend/aclose in parallel ↵ | Yury Selivanov | 2019-09-30 | 1 | -62/+16 |
| | | | | (#7468) | ||||
* | bpo-38013: make async_generator_athrow object tolerant to throwing ↵ | Andrew Svetlov | 2019-09-17 | 1 | -0/+22 |
| | | | | | | | | | | | | exceptions (GH-16070) Even when the helper is not started yet. This behavior follows conventional generator one. There is no reason for `async_generator_athrow` to handle `gen.throw()` differently. https://bugs.python.org/issue38013 | ||||
* | bpo-34728: Fix asyncio tests to run under "-Werror" (GH-9661) | Yury Selivanov | 2018-10-02 | 1 | -48/+48 |
| | |||||
* | bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() ↵ | Yury Selivanov | 2018-06-08 | 1 | -0/+56 |
| | | | | (GH-7467) | ||||
* | bpo-33562: Check the global asyncio event loop policy isn't set after any ↵ | Brett Cannon | 2018-06-02 | 1 | -0/+1 |
| | | | | tests (GH-7328) | ||||
* | bpo-31708: Allow async generator expressions in synchronous functions (#3905) | Yury Selivanov | 2017-10-06 | 1 | -0/+32 |
| | |||||
* | bpo-29919: Remove unused imports found by pyflakes (#137) | Victor Stinner | 2017-03-27 | 1 | -2/+0 |
| | | | Make also minor PEP8 coding style fixes on modified imports. | ||||
* | Remove unused imports. | Serhiy Storchaka | 2016-12-16 | 1 | -1/+0 |
| | |||||
* | Issue #28721: Fix asynchronous generators aclose() and athrow() | Yury Selivanov | 2016-11-16 | 1 | -0/+140 |
| | |||||
* | Issue #23996: Added _PyGen_SetStopIterationValue for safe raising | Serhiy Storchaka | 2016-11-06 | 1 | -0/+79 |
| | | | | | StopIteration with value. More safely handle non-normalized exceptions in -_PyGen_FetchStopIterationValue. | ||||
* | Issue #28480: Adjust or skip tests if multithreading is disabled | Martin Panter | 2016-10-20 | 1 | -1/+3 |
| | |||||
* | Issue #28003: Implement PEP 525 -- Asynchronous Generators. | Yury Selivanov | 2016-09-09 | 1 | -0/+823 |