summaryrefslogtreecommitdiff
path: root/asyncio
Commit message (Expand)AuthorAgeFilesLines
* Docstring for Queue.join shouldn't mention threads.remove-joinable-queueA. Jesse Jiryu Davis2015-01-231-2/+2
* Tulip issue #220: Merge JoinableQueue with Queue.A. Jesse Jiryu Davis2015-01-231-58/+37
* 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
* Python issue #23197: On SSL handshake failure, check if the waiter is cancelledVictor Stinner2015-01-142-2/+2
* Cleanup sslproto.pyVictor Stinner2015-01-141-1/+2
* Python issue #23173: Fix SubprocessStreamProtocol.connection_made() to handleVictor Stinner2015-01-141-1/+3
* Python issue #23173: If an exception is raised during the creation of aVictor Stinner2015-01-142-26/+63
* Python issue #23198: Reactor StreamReaderVictor Stinner2015-01-141-25/+22
* Python issue #22560: New SSL implementation based on ssl.MemoryBIOVictor Stinner2015-01-144-27/+694
* Python issue #22922: Fix ProactorEventLoop.close()Victor Stinner2015-01-131-1/+7
* Python issue #23209, #23225: selectors.BaseSelector.get_key() now raises aVictor Stinner2015-01-131-0/+3
* Python issue #23209: Revert change on selectors, test_selectors failed.Victor Stinner2015-01-091-1/+0
* Python issue #23209: Break some reference cycles in asyncio. Patch written byVictor Stinner2015-01-093-1/+3
* Tulip issue #184: FlowControlMixin constructor now get the event loop if theVictor Stinner2015-01-091-3/+7
* Remove outdated TODO/XXXVictor Stinner2015-01-094-8/+3
* Document why set_result() calls are safeVictor Stinner2015-01-091-0/+6
* Cleanup gather()Victor Stinner2015-01-091-4/+7
* sock_connect(): pass directly the fd to _sock_connect_done instead of the socketVictor Stinner2015-01-091-3/+3
* selectors: truncate to 80 charactersVictor Stinner2015-01-091-1/+2
* Truncate to 80 columnsVictor Stinner2015-01-098-22/+31
* _make_ssl_transport: make the waiter parameter optionalVictor Stinner2015-01-082-3/+3