| Commit message (Expand) | Author | Age | Files | Lines |
* | #23464: remove JoinableQueue that was deprecated in 3.4.4. | R David Murray | 2015-04-12 | 1 | -6/+1 |
|
|
* | Issue #23879, asyncio: SelectorEventLoop.sock_connect() must not call connect() | Victor Stinner | 2015-04-07 | 1 | -8/+6 |
|
|
* | asyncio: Fix _SelectorTransport.__repr__() if the event loop is closed | Victor Stinner | 2015-03-27 | 1 | -1/+1 |
|
|
* | Issue #23456: Add missing @coroutine decorators in asyncio | Victor Stinner | 2015-03-18 | 3 | -0/+5 |
|
|
* | asyncio: Fix repr(BaseSubprocessTransport) if it didn't start yet | Victor Stinner | 2015-03-10 | 1 | -2/+5 |
|
|
* | Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransport | Victor Stinner | 2015-02-27 | 1 | -6/+0 |
|
|
* | asyncio, Tulip issue 220: Merge JoinableQueue with Queue. | Victor Stinner | 2015-02-17 | 1 | -59/+43 |
|
|
* | asyncio: BaseSubprocessTransport: repr() mentions when the child process is | Victor Stinner | 2015-02-17 | 1 | -0/+2 |
|
|
* | asyncio: BaseSubprocessTransport.close() doesn't try to kill the process if it | Victor Stinner | 2015-02-10 | 1 | -1/+6 |
|
|
* | asyncio: BaseEventLoop: rename _owner to _thread_id | Victor Stinner | 2015-02-05 | 1 | -6/+6 |
|
|
* | asyncio: Only call _check_resolved_address() in debug mode | Victor Stinner | 2015-02-04 | 3 | -18/+36 |
|
|
* | asyncio: BaseSelectorEventLoop uses directly the private _debug attribute | Victor Stinner | 2015-02-04 | 1 | -5/+5 |
|
|
* | asyncio, Tulip issue 221: Fix doc of QueueEmpty and QueueFull | Victor Stinner | 2015-02-03 | 1 | -2/+6 |
|
|
* | Issue #23353, asyncio: Workaround CPython bug #23353 | Victor Stinner | 2015-02-02 | 3 | -4/+23 |
|
|
* | Issue #23347, asyncio: send_signal(), terminate(), kill() don't check if the | Victor Stinner | 2015-01-30 | 1 | -4/+3 |
|
|
* | 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 |
|
|