| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #23347, asyncio: Make BaseSubprocessTransport.wait() private | Victor Stinner | 2015-01-29 | 4 | -4/+4 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-29 | 4 | -87/+83 |
|
|
* | Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transport | Victor Stinner | 2015-01-29 | 8 | -5/+96 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-29 | 3 | -13/+50 |
|
|
* | asyncio doc: document Protocol state machine | Victor Stinner | 2015-01-29 | 1 | -0/+5 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-29 | 1 | -3/+10 |
|
|
* | asyncio: BaseSubprocessTransport._kill_wait() now also call close() | Victor Stinner | 2015-01-29 | 1 | -0/+3 |
|
|
* | asyncio: Fix _SelectorSocketTransport constructor | Victor Stinner | 2015-01-28 | 1 | -1/+3 |
|
|
* | asyncio: SSL transports now clear their reference to the waiter | Victor Stinner | 2015-01-28 | 4 | -21/+32 |
|
|
* | asyncio: Fix SSLProtocol.eof_received() | Victor Stinner | 2015-01-28 | 1 | -0/+4 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-27 | 2 | -2/+2 |
|
|
* | asyncio, Tulip issue 204: Fix IocpProactor.recv() | Victor Stinner | 2015-01-26 | 1 | -7/+13 |
|
|
* | Issue #23095, asyncio: Fix _WaitHandleFuture.cancel() | Victor Stinner | 2015-01-26 | 1 | -20/+17 |
|
|
* | Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() as a coroutine | Victor Stinner | 2015-01-26 | 1 | -21/+18 |
|
|
* | asyncio: PipeHandle.fileno() now raises an exception if the pipe is closed | Victor Stinner | 2015-01-26 | 1 | -0/+2 |
|
|
* | asyncio: Fix ProactorEventLoop.start_serving_pipe() | Victor Stinner | 2015-01-26 | 1 | -1/+13 |
|
|
* | Issue #23208, asyncio: Add BaseEventLoop._current_handle | Victor Stinner | 2015-01-26 | 1 | -6/+19 |
|
|
* | Issue #23293, asyncio: Cleanup IocpProactor.close() | Victor Stinner | 2015-01-26 | 1 | -6/+1 |
|
|
* | asyncio: Close transports on error | Victor Stinner | 2015-01-26 | 1 | -3/+21 |
|
|
* | asyncio, Tulip issue 204: Fix IocpProactor.accept_pipe() | Victor Stinner | 2015-01-22 | 1 | -24/+17 |
|
|
* | Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() | Victor Stinner | 2015-01-22 | 1 | -17/+26 |
|
|
* | asyncio: IocpProactor.close() doesn't cancel anymore futures which are already | Victor Stinner | 2015-01-22 | 1 | -3/+7 |
|
|
* | Issue #23095, asyncio: IocpProactor.close() must not cancel pending | Victor Stinner | 2015-01-21 | 1 | -0/+6 |
|
|
* | asyncio: BaseEventLoop._create_connection_transport() catchs any exception, not | Victor Stinner | 2015-01-21 | 1 | -1/+1 |
|
|
* | Issue #23095, asyncio: Rewrite _WaitHandleFuture.cancel() | Victor Stinner | 2015-01-21 | 1 | -34/+134 |
|
|
* | asyncio: pyflakes, remove unused import | Victor Stinner | 2015-01-21 | 2 | -2/+1 |
|
|
* | asyncio: Enhance BaseProactorEventLoop._loop_self_reading() | Victor Stinner | 2015-01-21 | 1 | -3/+9 |
|
|
* | Backout changeset 6ab2575bc12b | Victor Stinner | 2015-01-15 | 1 | -21/+4 |
|
|
* | Closes #23219: cancelling asyncio.wait_for() now cancels the task | Victor Stinner | 2015-01-15 | 1 | -4/+8 |
|
|
* | asyncio: Close the transport on subprocess creation failure | Victor Stinner | 2015-01-15 | 2 | -2/+11 |
|
|
* | asyncio: Fix _ProactorBasePipeTransport.close() | Victor Stinner | 2015-01-15 | 1 | -1/+3 |
|
|
* | asyncio: Fix _ProactorBasePipeTransport.__repr__() | Victor Stinner | 2015-01-15 | 1 | -3/+3 |
|
|
* | Issue #23243: Fix asyncio._UnixWritePipeTransport.close() | Victor Stinner | 2015-01-15 | 1 | -1/+1 |
|
|
* | SSLProtocol: set the _transport attribute in the constructor | Victor Stinner | 2015-01-15 | 1 | -0/+1 |
|
|
* | Issue #23242: asyncio.SubprocessStreamProtocol now closes the subprocess | Victor Stinner | 2015-01-15 | 1 | -1/+4 |
|
|
* | Issue #22560: Fix typo: call -> call_soon | Victor Stinner | 2015-01-15 | 1 | -1/+1 |
|
|
* | Issue #22560: Fix SSLProtocol._on_handshake_complete() | Victor Stinner | 2015-01-15 | 1 | -2/+6 |
|
|
* | StreamWriter: close() now clears the reference to the transport | Victor Stinner | 2015-01-15 | 1 | -4/+21 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-14 | 7 | -11/+31 |
|
|
* | Issue #23197: On SSL handshake failure on matching hostname, check if the | Victor Stinner | 2015-01-14 | 1 | -1/+2 |
|
|
* | Issue #23197, asyncio: On SSL handshake failure, check if the waiter is | Victor Stinner | 2015-01-14 | 2 | -3/+4 |
|
|
* | Python issue #23173: sync with Tulip | Victor Stinner | 2015-01-14 | 2 | -27/+66 |
|
|
* | Issue #23198: Reactor asyncio.StreamReader | Victor Stinner | 2015-01-13 | 1 | -25/+22 |
|
|
* | Issue #22560: New SSL implementation based on ssl.MemoryBIO | Victor Stinner | 2015-01-13 | 4 | -27/+694 |
|
|
* | Issue #22922: Fix ProactorEventLoop.close() | Victor Stinner | 2015-01-13 | 1 | -1/+7 |
|
|
* | Issue #23209: Break some reference cycles in asyncio. Patch written by Martin | Victor Stinner | 2015-01-09 | 2 | -1/+2 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-09 | 5 | -11/+10 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-09 | 3 | -7/+16 |
|
|
* | asyncio: Truncate to 80 columns | Victor Stinner | 2015-01-08 | 7 | -15/+23 |
|
|
* | asyncio: _make_ssl_transport: make the waiter parameter optional | Victor Stinner | 2015-01-08 | 2 | -3/+3 |
|
|