summaryrefslogtreecommitdiff
path: root/asyncio
Commit message (Expand)AuthorAgeFilesLines
* 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
* Issue #23140: Fix cancellation of Process.wait(). Check the state of the waiterVictor Stinner2015-01-061-1/+2
* Python issue #23046: Expose the BaseEventLoop class in the asyncio namespaceVictor Stinner2015-01-062-2/+4
* fix typoVictor Stinner2014-12-261-1/+1
* Python issue #22926: In debug mode, call_soon(), call_at() and call_later()Victor Stinner2014-12-263-23/+23
* Fix doc of get and put methods of QueueVictor Stinner2014-12-261-3/+7
* asyncio.test_support now uses test.support and test.script_helper if availableVictor Stinner2014-12-191-0/+12
* IocpProactor.wait_for_handle() test now also checks the result of the futureVictor Stinner2014-12-191-0/+5
* support: fix assert_python_ok() on python 3.3Victor Stinner2014-12-181-1/+1