summaryrefslogtreecommitdiff
path: root/asyncio
Commit message (Expand)AuthorAgeFilesLines
...
| * 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
| * Fix a race condition in BaseSubprocessTransport._try_finish()Victor Stinner2014-12-181-1/+1
| * Add repr(PipeHandle)Victor Stinner2014-12-181-0/+7
| * test_support: add missing importVictor Stinner2014-12-181-0/+2
| * Fix typoVictor Stinner2014-12-181-1/+1
| * Copy a subset of test.support from CPython 3.5 to no more depend on the testVictor Stinner2014-12-181-0/+290
| * Python issue #23074: get_event_loop() now raises an exception if the thread hasVictor Stinner2014-12-182-4/+4
| * Add run_aiotest.pyVictor Stinner2014-12-1222-0/+9464
* BaseSubprocessTransport: repr() mentions when the child process is runningVictor Stinner2015-02-121-0/+2
* BaseSubprocessTransport.close() doesn't try to kill the process if it alreadyVictor Stinner2015-02-101-1/+6
* 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