summaryrefslogtreecommitdiff
path: root/asyncio
Commit message (Expand)AuthorAgeFilesLines
* Python issue #23879: SelectorEventLoop.sock_connect() must not call connect()Victor Stinner2015-04-071-8/+6
* Fix _SelectorTransport.__repr__() if the event loop is closedVictor Stinner2015-03-271-1/+1
* Python issue #23456: Add missing @coroutine decoratorsVictor Stinner2015-03-183-0/+5
* Fix repr(BaseSubprocessTransport) if it didn't start yetVictor Stinner2015-03-101-2/+5
* Python issue #23537: Remove 2 unused private methods of BaseSubprocessTransportVictor Stinner2015-02-271-6/+0
* Merge branch remove-joinable-queue.A. Jesse Jiryu Davis2015-02-141-59/+43
|\
| * Tulip issue #220: Restore JoinableQueue as a deprecated alias for Queue.A. Jesse Jiryu Davis2015-02-141-1/+6
| * Docstring for Queue.join shouldn't mention threads.A. 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