Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-33562: Check the global asyncio event loop policy isn't set after any ↵ | Brett Cannon | 2018-06-02 | 1 | -0/+4 |
| | | | | tests (GH-7328) | ||||
* | bpo-32591: Add native coroutine origin tracking (#5250) | Nathaniel J. Smith | 2018-01-21 | 1 | -28/+8 |
| | | | | | | * Add coro.cr_origin and sys.set_coroutine_origin_tracking_depth * Use coroutine origin information in the unawaited coroutine warning * Stop using set_coroutine_wrapper in asyncio debug mode * In BaseEventLoop.set_debug, enable debugging in the correct thread | ||||
* | bpo-32357: Fix tests in refleak mode (#4989) | Yury Selivanov | 2017-12-23 | 1 | -7/+15 |
| | |||||
* | bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785) | Yury Selivanov | 2017-12-11 | 1 | -5/+2 |
| | |||||
* | bpo-32253: Deprecate with statement and bare await for asyncio locks (GH-4764) | Andrew Svetlov | 2017-12-09 | 1 | -6/+7 |
| | | | | | * Add test for 'with (yield from lock)' * Deprecate with statement for asyncio locks * Document the deprecation | ||||
* | bpo-29919: Remove unused imports found by pyflakes (#137) | Victor Stinner | 2017-03-27 | 1 | -1/+0 |
| | | | Make also minor PEP8 coding style fixes on modified imports. | ||||
* | Issue #28613: Fix get_event_loop() to return the current loop | Yury Selivanov | 2016-11-04 | 1 | -0/+1 |
| | | | | when called from coroutines or callbacks. | ||||
* | Sync asyncio with upstream git repo (conditional import in test_pep492.py). | Guido van Rossum | 2015-12-13 | 1 | -1/+4 |
| | |||||
* | asyncio: Error if awaiting in parallel on the same coroutine | Yury Selivanov | 2015-11-18 | 1 | -0/+20 |
| | | | | See https://github.com/python/asyncio/pull/293 for details. | ||||
* | Issue #24867: Fix asyncio.Task.get_stack() for 'async def' coroutines | Yury Selivanov | 2015-08-17 | 1 | -0/+17 |
| | |||||
* | asyncio.test_pep492: Add a test for asyncio.iscoroutinefunction | Yury Selivanov | 2015-08-05 | 1 | -0/+4 |
| | |||||
* | Issue #24325, #24400: Add more unittests for types.coroutine; tweak wrapper ↵ | Yury Selivanov | 2015-06-24 | 1 | -0/+19 |
| | | | | implementation. | ||||
* | Issue #24495, #24400: Test asyncio.Task.repr in debug mode | Yury Selivanov | 2015-06-24 | 1 | -0/+7 |
| | |||||
* | Fix asyncio unittests in debug mode | Yury Selivanov | 2015-06-24 | 1 | -1/+1 |
| | |||||
* | Issue #24400: Fix CoroWrapper for 'async def' coroutines | Yury Selivanov | 2015-06-24 | 1 | -1/+24 |
| | |||||
* | Issue 24017: Add a test for CoroWrapper and 'async def' coroutines | Yury Selivanov | 2015-06-01 | 1 | -0/+14 |
| | |||||
* | Issue 24004: Fix DeprecationWarning in a unittest | Yury Selivanov | 2015-05-31 | 1 | -1/+1 |
| | |||||
* | Issue 24004: Add a unittest for @asyncio.coroutine supporting Awaitables | Yury Selivanov | 2015-05-31 | 1 | -0/+13 |
| | |||||
* | Issue 24315: Make collections.abc.Coroutine derived from Awaitable | Yury Selivanov | 2015-05-29 | 1 | -9/+5 |
| | |||||
* | asyncio/tests: Drop unused import. | Yury Selivanov | 2015-05-13 | 1 | -1/+0 |
| | |||||
* | asyncio: Add a test for asyncio.iscoroutine(). | Yury Selivanov | 2015-05-13 | 1 | -0/+29 |
| | | | | | Test that asyncio.iscoroutine() supports 'async def' coroutines and collections.abc.Coroutine types. | ||||
* | Issue 24179: Support 'async for' for asyncio.StreamReader. | Yury Selivanov | 2015-05-13 | 1 | -0/+19 |
| | |||||
* | Issue 24178: support 'async with' for asyncio locks. | Yury Selivanov | 2015-05-13 | 1 | -0/+68 |