summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
...
* asyncio doc: document Protocol state machineVictor Stinner2015-01-291-0/+5
* asyncio: sync with TulipVictor Stinner2015-01-291-3/+10
* asyncio: BaseSubprocessTransport._kill_wait() now also call close()Victor Stinner2015-01-291-0/+3
* asyncio: Fix _SelectorSocketTransport constructorVictor Stinner2015-01-281-1/+3
* asyncio: SSL transports now clear their reference to the waiterVictor Stinner2015-01-284-21/+32
* asyncio: Fix SSLProtocol.eof_received()Victor Stinner2015-01-281-0/+4
* asyncio: sync with TulipVictor Stinner2015-01-272-2/+2
* asyncio, Tulip issue 204: Fix IocpProactor.recv()Victor Stinner2015-01-261-7/+13
* Issue #23095, asyncio: Fix _WaitHandleFuture.cancel()Victor Stinner2015-01-261-20/+17
* Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() as a coroutineVictor Stinner2015-01-261-21/+18
* asyncio: PipeHandle.fileno() now raises an exception if the pipe is closedVictor Stinner2015-01-261-0/+2
* asyncio: Fix ProactorEventLoop.start_serving_pipe()Victor Stinner2015-01-261-1/+13
* Issue #23208, asyncio: Add BaseEventLoop._current_handleVictor Stinner2015-01-261-6/+19
* Issue #23293, asyncio: Cleanup IocpProactor.close()Victor Stinner2015-01-261-6/+1
* asyncio: Close transports on errorVictor Stinner2015-01-261-3/+21
* asyncio, Tulip issue 204: Fix IocpProactor.accept_pipe()Victor Stinner2015-01-221-24/+17
* Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe()Victor Stinner2015-01-221-17/+26
* asyncio: IocpProactor.close() doesn't cancel anymore futures which are alreadyVictor Stinner2015-01-221-3/+7
* Issue #23095, asyncio: IocpProactor.close() must not cancel pendingVictor Stinner2015-01-211-0/+6
* asyncio: BaseEventLoop._create_connection_transport() catchs any exception, notVictor Stinner2015-01-211-1/+1
* Issue #23095, asyncio: Rewrite _WaitHandleFuture.cancel()Victor Stinner2015-01-211-34/+134
* asyncio: pyflakes, remove unused importVictor Stinner2015-01-212-2/+1
* asyncio: Enhance BaseProactorEventLoop._loop_self_reading()Victor Stinner2015-01-211-3/+9
* Backout changeset 6ab2575bc12bVictor Stinner2015-01-151-21/+4
* Closes #23219: cancelling asyncio.wait_for() now cancels the taskVictor Stinner2015-01-151-4/+8
* asyncio: Close the transport on subprocess creation failureVictor Stinner2015-01-152-2/+11
* asyncio: Fix _ProactorBasePipeTransport.close()Victor Stinner2015-01-151-1/+3
* asyncio: Fix _ProactorBasePipeTransport.__repr__()Victor Stinner2015-01-151-3/+3
* Issue #23243: Fix asyncio._UnixWritePipeTransport.close()Victor Stinner2015-01-151-1/+1
* SSLProtocol: set the _transport attribute in the constructorVictor Stinner2015-01-151-0/+1
* Issue #23242: asyncio.SubprocessStreamProtocol now closes the subprocessVictor Stinner2015-01-151-1/+4
* Issue #22560: Fix typo: call -> call_soonVictor Stinner2015-01-151-1/+1
* Issue #22560: Fix SSLProtocol._on_handshake_complete()Victor Stinner2015-01-151-2/+6
* StreamWriter: close() now clears the reference to the transportVictor Stinner2015-01-151-4/+21
* asyncio: sync with TulipVictor Stinner2015-01-147-11/+31
* Issue #23197: On SSL handshake failure on matching hostname, check if theVictor Stinner2015-01-141-1/+2
* Issue #23197, asyncio: On SSL handshake failure, check if the waiter isVictor Stinner2015-01-142-3/+4
* Python issue #23173: sync with TulipVictor Stinner2015-01-142-27/+66
* Issue #23198: Reactor asyncio.StreamReaderVictor Stinner2015-01-131-25/+22
* Issue #22560: New SSL implementation based on ssl.MemoryBIOVictor Stinner2015-01-134-27/+694
* Issue #22922: Fix ProactorEventLoop.close()Victor Stinner2015-01-131-1/+7
* Issue #23209: Break some reference cycles in asyncio. Patch written by MartinVictor Stinner2015-01-092-1/+2
* asyncio: sync with TulipVictor Stinner2015-01-095-11/+10
* asyncio: sync with TulipVictor Stinner2015-01-093-7/+16
* asyncio: Truncate to 80 columnsVictor Stinner2015-01-087-15/+23
* asyncio: _make_ssl_transport: make the waiter parameter optionalVictor Stinner2015-01-082-3/+3
* Issue #23140, asyncio: Fix cancellation of Process.wait(). Check the state ofVictor Stinner2015-01-061-1/+2
* Issue #23046: Expose the BaseEventLoop class in the asyncio namespaceVictor Stinner2015-01-062-2/+4
* Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods ofVictor Stinner2014-12-263-23/+23
* asyncio doc: update also Queue docstringsVictor Stinner2014-12-221-3/+7