summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-eventloop.rst
Commit message (Collapse)AuthorAgeFilesLines
* asyncio doc: document missing event loop methodsVictor Stinner2014-02-081-4/+86
|
* Issue #20505: Remove resolution and _granularity from selectors and asyncioVictor Stinner2014-02-071-13/+0
| | | | | * Remove selectors.BaseSelector.resolution attribute * Remove asyncio.BaseEventLoop._granularity attribute
* Issue #20472: asyncio: Adjust the note about Mac OS X on PTY, specify that itVictor Stinner2014-02-021-1/+2
| | | | requires at least Mac OS X 10.6.
* asyncio: document the new asyncio.subprocess moduleVictor Stinner2014-02-021-0/+5
|
* asyncio doc: add "asyncio-" prefix to referencesVictor Stinner2014-02-021-6/+6
|
* asyncio doc: document the granularity of the event loopVictor Stinner2014-02-011-1/+17
| | | | Improve also the "Logging" section
* Fix doc reference to OS X 10.9 Mavericks.Ned Deily2014-01-281-1/+1
|
* asyncio doc: list Windows and Mac OS X limitations and explain how to workVictor Stinner2014-01-281-4/+13
| | | | around them
* asyncio doc: subprocess_exec/subprocess_shell are not available on WindowsVictor Stinner2014-01-271-0/+4
|
* asyncio: document add_signal_handler/remove_signal_handler, add an example forVictor Stinner2014-01-271-0/+47
| | | | signals
* Merge latest Tulip into asyncioVictor Stinner2014-01-251-6/+0
| | | | | | - Make the new granularity attribute private - Simplify BaseEventLoop._run_once(): avoid math.ceil(), use simple arithmetic instead
* Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximumVictor Stinner2014-01-251-0/+6
| | | | | | between the resolution of the BaseEventLoop.time() method and the resolution of the selector. The granuarility is used in the scheduler to round time and deadline.
* asyncio doc: move AbstractServer to the event loop pageVictor Stinner2014-01-241-0/+16
| | | | | Add also entries in the table of content for each synchronization primitive class.
* asyncio doc: link create_connection() to open_connection() and create_server()Victor Stinner2014-01-231-0/+10
| | | | | | to start_server() Rename also the "Network functions" section to "Stream functions" and move it to the Stream section.
* asyncio doc: replace "coroutine" with "coroutine object" or "coroutine function"Victor Stinner2014-01-161-8/+8
|
* Fix Sphinx markup for asyncio modules so :mod:`asyncio` links work.R David Murray2013-12-201-1/+1
|
* asyncio doc: rewrite the callback hello world to use call_soon() instead of aVictor Stinner2013-12-101-1/+1
| | | | direct call.
* asyncio doc: oh, asyncio module has its own Future classVictor Stinner2013-12-031-1/+1
| | | | | Improve also wait() documentation: mention that the first parameter is a sequence
* asyncio doc: fix definition of stop() methodVictor Stinner2013-12-031-1/+1
|
* asyncio doc: write a complete TCP echo example, client and serverVictor Stinner2013-12-031-1/+1
| | | | Example based on tcp_echo.py example from Tulip source code.
* asyncio doc: move coroutine example to the Task pageVictor Stinner2013-12-031-19/+9
|
* Split asyncio documentation into subfilesVictor Stinner2013-12-031-0/+367