summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncgen.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)Christian Heimes2022-03-221-1/+3
* bpo-44963: Implement send() and throw() methods for anext_awaitable objects (...Pablo Galindo Salgado2021-09-071-0/+172
* bpo-45097: Add more tests for shutdown_asyncgens() (GH-28154)Serhiy Storchaka2021-09-041-0/+79
* bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)Serhiy Storchaka2021-08-291-0/+2
* bpo-43751: Fix anext() bug where it erroneously returned None (GH-25238)Dennis Sweeney2021-04-111-5/+135
* bpo-31861: Add aiter and anext to builtins (#23847)Joshua Bronson2021-03-231-0/+82
* bpo-40275: Use new test.support helper submodules in tests (GH-21448)Hai Shi2020-08-031-1/+1
* bpo-39764: Make Task.get_stack accept ag_frame (#18669)Lidi Zheng2020-03-021-0/+15
* bpo-39606: allow closing async generators that are already closed (GH-18475)Nathaniel J. Smith2020-02-131-2/+28
* bpo-39386: Prevent double awaiting of async iterator (GH-18081)Andrew Svetlov2020-01-201-0/+36
* bpo-35409: Ignore GeneratorExit in async_gen_athrow_throw (GH-14755)Vincent Michel2019-11-191-0/+27
* bpo-30773: Fix ag_running; prohibit running athrow/asend/aclose in parallel (...Yury Selivanov2019-09-301-62/+16
* bpo-38013: make async_generator_athrow object tolerant to throwing exceptions...Andrew Svetlov2019-09-171-0/+22
* bpo-34728: Fix asyncio tests to run under "-Werror" (GH-9661)Yury Selivanov2018-10-021-48/+48
* bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() (G...Yury Selivanov2018-06-081-0/+56
* bpo-33562: Check the global asyncio event loop policy isn't set after any tes...Brett Cannon2018-06-021-0/+1
* bpo-31708: Allow async generator expressions in synchronous functions (#3905)Yury Selivanov2017-10-061-0/+32
* bpo-29919: Remove unused imports found by pyflakes (#137)Victor Stinner2017-03-271-2/+0
* Remove unused imports.Serhiy Storchaka2016-12-161-1/+0
* Issue #28721: Fix asynchronous generators aclose() and athrow()Yury Selivanov2016-11-161-0/+140
* Issue #23996: Added _PyGen_SetStopIterationValue for safe raisingSerhiy Storchaka2016-11-061-0/+79
* Issue #28480: Adjust or skip tests if multithreading is disabledMartin Panter2016-10-201-1/+3
* Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-091-0/+823