| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #24325, #24400: Add more unittests for types.coroutine; tweak wrapper i... | Yury Selivanov | 2015-06-24 | 1 | -0/+19 |
|
|
* | 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 | 2 | -2/+26 |
|\ \
| |/ |
|
| * | Issue #24400: Fix CoroWrapper for 'async def' coroutines | Yury Selivanov | 2015-06-24 | 1 | -1/+2 |
|
|
* | | 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 |
|
|
* | | 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 |
|/ |
|
* | asyncio: Support PEP 492. Issue #24017. | Yury Selivanov | 2015-05-12 | 2 | -3/+4 |
|
|
* | asyncio: async() function is deprecated in favour of ensure_future(). | Yury Selivanov | 2015-05-11 | 3 | -25/+31 |
|
|
* | Sync asyncio changes from the main repo. | Yury Selivanov | 2015-05-11 | 2 | -4/+50 |
|
|
* | Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions witho... | Guido van Rossum | 2015-05-03 | 1 | -21/+44 |
|
|
* | Fix asyncio issue 235: Queue subclass bug caused by JoinableQueue merge. | Guido van Rossum | 2015-04-20 | 1 | -5/+19 |
|
|
* | asyncio: Fix _SelectorTransport.__repr__() if the event loop is closed | Victor Stinner | 2015-03-27 | 1 | -0/+5 |
|
|
* | asyncio: Fix warning in test_close_kill_running() | Victor Stinner | 2015-02-17 | 1 | -0/+1 |
|
|
* | Issue #23475, asyncio: Fix test_close_kill_running() | Victor Stinner | 2015-02-17 | 1 | -2/+10 |
|
|
* | asyncio, Tulip issue 220: Merge JoinableQueue with Queue. | Victor Stinner | 2015-02-17 | 1 | -5/+5 |
|
|
* | Use os.devnull instead of hardcoded '/dev/null'. | Serhiy Storchaka | 2015-02-15 | 1 | -3/+3 |
|
|
* | asyncio: BaseSubprocessTransport.close() doesn't try to kill the process if it | Victor Stinner | 2015-02-10 | 1 | -0/+55 |
|
|
* | asyncio: Only call _check_resolved_address() in debug mode | Victor Stinner | 2015-02-04 | 1 | -0/+4 |
|
|
* | Issue #23347, asyncio: send_signal(), terminate(), kill() don't check if the | Victor Stinner | 2015-01-30 | 1 | -16/+0 |
|
|
* | asyncio: Fix ResourceWarning in test_subprocess.test_proc_exit() | Victor Stinner | 2015-01-29 | 1 | -0/+2 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-29 | 2 | -17/+83 |
|
|
* | Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transport | Victor Stinner | 2015-01-29 | 2 | -5/+8 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-29 | 2 | -31/+35 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-29 | 1 | -1/+14 |
|
|
* | asyncio: Fix _SelectorSocketTransport constructor | Victor Stinner | 2015-01-28 | 1 | -5/+11 |
|
|
* | asyncio: Fix SSLProtocol.eof_received() | Victor Stinner | 2015-01-28 | 1 | -11/+29 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-27 | 1 | -0/+5 |
|
|
* | Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() as a coroutine | Victor Stinner | 2015-01-26 | 1 | -0/+13 |
|
|
* | asyncio: pyflakes, remove unused import | Victor Stinner | 2015-01-21 | 1 | -9/+1 |
|
|
* | asyncio: Enhance BaseProactorEventLoop._loop_self_reading() | Victor Stinner | 2015-01-21 | 1 | -2/+3 |
|
|
* | Issue #22685: Fix test_pause_reading() of asyncio/test_subprocess | Victor Stinner | 2015-01-15 | 1 | -2/+12 |
|
|
* | Closes #23219: cancelling asyncio.wait_for() now cancels the task | Victor Stinner | 2015-01-15 | 1 | -0/+27 |
|
|
* | asyncio: Close transports in tests | Victor Stinner | 2015-01-15 | 4 | -3/+15 |
|
|
* | Issue #23243: Close explicitly transports in asyncio tests | Victor Stinner | 2015-01-15 | 3 | -277/+226 |
|
|
* | Issue #23243: Close explicitly event loops in asyncio tests | Victor Stinner | 2015-01-15 | 3 | -1/+20 |
|
|
* | Issue #23243: Fix asyncio._UnixWritePipeTransport.close() | Victor Stinner | 2015-01-15 | 1 | -0/+3 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-14 | 5 | -0/+26 |
|
|
* | Issue #23197, asyncio: On SSL handshake failure, check if the waiter is | Victor Stinner | 2015-01-14 | 2 | -4/+61 |
|
|
* | Python issue #23173: sync with Tulip | Victor Stinner | 2015-01-14 | 1 | -0/+36 |
|
|
* | Issue #22560: New SSL implementation based on ssl.MemoryBIO | Victor Stinner | 2015-01-13 | 2 | -11/+53 |
|
|
* | Tulip issue 184: Fix test_pipe() on Windows | Victor Stinner | 2015-01-13 | 1 | -1/+2 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-09 | 1 | -0/+19 |
|
|
* | asyncio: Truncate to 80 columns | Victor Stinner | 2015-01-08 | 5 | -18/+37 |
|
|