summaryrefslogtreecommitdiff
path: root/asyncio
Commit message (Expand)AuthorAgeFilesLines
* Python issue #23243: On Python 3.4 and newer, emit a ResourceWarning when anHEADmasterVictor Stinner2015-01-298-5/+96
* Document Protocol state machineVictor Stinner2015-01-291-0/+5
* Fix BaseSelectorEventLoop._accept_connection()Victor Stinner2015-01-291-6/+38
* Fix _UnixReadPipeTransport and _UnixWritePipeTransportVictor Stinner2015-01-291-6/+11
* Cleanup gather(): use cancelled() method instead of using private FutureVictor Stinner2015-01-291-1/+1
* Fix _SelectorSslTransport.close()Victor Stinner2015-01-291-1/+6
* _SelectorTransport constructor: extra parameter is now optionalVictor Stinner2015-01-291-1/+1
* Fix _SelectorDatagramTransport constructorVictor Stinner2015-01-291-1/+3
* BaseSubprocessTransport._kill_wait() now also call close()Victor Stinner2015-01-291-0/+3
* Fix _SelectorSocketTransport constructorVictor Stinner2015-01-291-1/+3
* SSL transports now clear their reference to the waiterVictor Stinner2015-01-294-21/+32
* Fix SSLProtocol.eof_received()Victor Stinner2015-01-281-0/+4
* Remove unused SSLProtocol._closing attributeVictor Stinner2015-01-281-1/+0
* Python issue #23208: Don't use the traceback of the current handle if weVictor Stinner2015-01-261-1/+2
* Tulip issue #204: Fix IocpProactor.recv()Victor Stinner2015-01-261-7/+13
* Python issue #23095: Fix _WaitHandleFuture.cancel()Victor Stinner2015-01-261-20/+17
* Python issue #23293: Rewrite IocpProactor.connect_pipe() as a coroutineVictor Stinner2015-01-261-21/+18
* PipeHandle.fileno() now raises an exception if the pipe is closedVictor Stinner2015-01-261-0/+2
* Fix ProactorEventLoop.start_serving_pipe()Victor Stinner2015-01-261-1/+13
* Python issue #23208: Add BaseEventLoop._current_handleVictor Stinner2015-01-261-6/+19
* Python issue #23293: Cleanup IocpProactor.close()Victor Stinner2015-01-231-6/+1
* Close transports on errorVictor Stinner2015-01-231-3/+21
* Tulip issue #204: Fix IocpProactor.accept_pipe()Victor Stinner2015-01-221-24/+17
* Python issue #23293: Rewrite IocpProactor.connect_pipe()Victor Stinner2015-01-221-17/+26
* IocpProactor.close(): don't cancel futures which are already cancelledVictor Stinner2015-01-221-3/+7
* Python issue #23095: IocpProactor.close() must not cancel pendingVictor Stinner2015-01-221-0/+6
* BaseEventLoop._create_connection_transport() catchs any exception, not onlyVictor Stinner2015-01-221-1/+1
* Python issue #23095: Rewrite _WaitHandleFuture.cancel()Victor Stinner2015-01-211-34/+134
* pyflakes: remove unused importVictor Stinner2015-01-161-1/+0
* Enhance BaseProactorEventLoop._loop_self_reading()Victor Stinner2015-01-161-3/+9
* Cleanup BaseEventLoop._create_connection_transport()Victor Stinner2015-01-161-1/+1
* Backout changeset 3a06020af8cfVictor Stinner2015-01-151-21/+4
* Python issue #23219: cancelling wait_for() now cancels the taskVictor Stinner2015-01-151-4/+8
* Close the transport on subprocess creation failureVictor Stinner2015-01-152-2/+11
* Fix _ProactorBasePipeTransport.close()Victor Stinner2015-01-151-1/+3
* Fix _ProactorBasePipeTransport.__repr__()Victor Stinner2015-01-151-3/+3
* Python issue #23243: Fix _UnixWritePipeTransport.close()Victor Stinner2015-01-151-1/+1
* SSLProtocol: set the _transport attribute in the constructorVictor Stinner2015-01-151-0/+1
* Python issue #23242: SubprocessStreamProtocol now closes the subprocessVictor Stinner2015-01-151-1/+4
* Python 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
* PipeHandle now uses None instead of -1 for a closed handleVictor Stinner2015-01-141-5/+5
* Fix BaseEventLoop._create_connection_transport()Victor Stinner2015-01-141-1/+6
* _ProactorBasePipeTransport now sets _sock to None when the transport is closedVictor Stinner2015-01-141-0/+1
* Fix BaseSubprocessTransport.close()Victor Stinner2015-01-141-0/+2
* TestLoop.close() now calls the close() method of the parent class (BaseEventL...Victor Stinner2015-01-141-0/+1
* cleanup BaseSelectorEventLoopVictor Stinner2015-01-141-2/+3
* Fix BaseSubprocessTransport._kill_wait()Victor Stinner2015-01-141-1/+1
* UNIX pipe transports: add closed/closing in repr()Victor Stinner2015-01-141-2/+12
* Python issue #23197: On SSL handshake failure on matching hostname, check ifVictor Stinner2015-01-141-1/+2