summaryrefslogtreecommitdiff
path: root/asyncio
Commit message (Expand)AuthorAgeFilesLines
* BaseEventLoop: rename _owner to _thread_id3.4.3Victor Stinner2015-02-041-6/+6
* Only call _check_resolved_address() in debug modeVictor Stinner2015-02-043-18/+36
* BaseSelectorEventLoop uses directly the private _debug attributeVictor Stinner2015-02-041-5/+5
* Tulip issue #221: Fix docstring of QueueEmpty and QueueFullVictor Stinner2015-02-031-2/+6
* Workaround CPython bug #23353Victor Stinner2015-02-023-4/+23
* Python issue #23347: send_signal(), terminate(), kill() don't check if theVictor Stinner2015-01-301-4/+3
* Python issue #23347: Make BaseSubprocessTransport.wait() privateVictor Stinner2015-01-304-4/+4
* Python issue #23347: send_signal(), kill() and terminate() methods ofVictor Stinner2015-01-292-7/+9
* Python issue #23347: Refactor creation of subprocess transportsVictor Stinner2015-01-294-80/+74
* Python issue #23243: On Python 3.4 and newer, emit a ResourceWarning when anVictor 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-2624-0/+10706