Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Issue #22063: Fix asyncio documentation of socket and pipe operations regarding | Victor Stinner | 2014-08-26 | 1 | -5/+14 | |
| | | | | | to non-blocking mode. The non-blocking mode does not matter when using a ProactorEventLoop, only for SelectorEventLoop. | |||||
* | Issue #22112, asyncio doc: replace loop.create_task(coro) with | Victor Stinner | 2014-08-11 | 1 | -3/+2 | |
| | | | | | | asyncio.async(coro), mention that asyncio.async() can be used to scheduler a coroutine, and make it clear that create_task() is only available in Python 3.4.2 and later. | |||||
* | Issue #22063: Mention in asyncio documentation that socket operations require | Victor Stinner | 2014-07-29 | 1 | -0/+8 | |
| | | | | the socket to be non-blocking | |||||
* | Fix incomplete sentence in asyncio docs. | Andrew Svetlov | 2014-07-24 | 1 | -2/+3 | |
| | ||||||
* | Asyncio doc fixes: spelling, grammar, duplication. | Terry Jan Reedy | 2014-07-24 | 1 | -3/+1 | |
| | ||||||
* | asyncio: Server.close() leaves client sockets open | Victor Stinner | 2014-07-12 | 1 | -2/+5 | |
| | ||||||
* | asyncio: improve the documentation of servers | Victor Stinner | 2014-07-11 | 1 | -6/+21 | |
| | | | | | | - Fix the documentation of Server.close(): it closes sockets - Replace AbstractServer with Server - Document Server.sockets attribute | |||||
* | Issue #21680: Document asyncio event loops | Victor Stinner | 2014-07-08 | 1 | -76/+6 | |
| | ||||||
* | Update asyncio documentation | Victor Stinner | 2014-07-08 | 1 | -2/+21 | |
| | | | | | | | | | - Document the new create_task() method - "Hide" the Task class: point to the create_task() method for interoperability - Rewrite the documentation of the Task class - Document the "Pending task destroyed" - Update output in debug mode of examples in the dev section - Replace Task() with create_task() in examples | |||||
* | Closes #21921: Fix ResourceWarning in the asyncio examples: close the event | Victor Stinner | 2014-07-05 | 1 | -2/+8 | |
| | | | | | loop at exit. Patch written by Vajrasky Kok (I modified also the "hello world" example using a coroutine). | |||||
* | asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the | Victor Stinner | 2014-06-23 | 1 | -0/+2 | |
| | | | | | event loop is running. You must first stop the event loop and then wait until it stopped, before closing it. | |||||
* | asyncio: document the debug mode | Victor Stinner | 2014-06-23 | 1 | -1/+1 | |
| | ||||||
* | asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUG | Victor Stinner | 2014-06-23 | 1 | -1/+5 | |
| | | | | environment variable is set | |||||
* | Tulip issue 83: document more asyncio functions in docstrings | Victor Stinner | 2014-06-19 | 1 | -4/+3 | |
| | ||||||
* | asyncio: Fix pyflakes errors | Victor Stinner | 2014-06-18 | 1 | -0/+4 | |
| | | | | | | - Add a missing import - Remove an unused import - Remove unused variables | |||||
* | Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop | Victor Stinner | 2014-06-10 | 1 | -0/+6 | |
| | | | | | | | | | | | Add BaseEventLoop._closed attribute and use it to check if the event loop was closed or not, instead of checking different attributes in each subclass of BaseEventLoop. run_forever() and run_until_complete() methods now raise a RuntimeError('Event loop is closed') exception if the event loop was closed. BaseProactorEventLoop.close() now also cancels "accept futures". | |||||
* | Tulip issue 83, Python issue #21252: Fill some XXX docstrings in asyncio | Victor Stinner | 2014-06-05 | 1 | -4/+4 | |
| | ||||||
* | Issue #21454: Fix asyncio.BaseEventLoop.connect_read_pipe doc | Victor Stinner | 2014-05-29 | 1 | -3/+3 | |
| | | | | The function sets the the pipe to non-blocking mode. | |||||
* | Issue #21006: asyncio doc: reorganize subprocess doc | Victor Stinner | 2014-03-25 | 1 | -80/+4 | |
| | ||||||
* | Issue #20913: improve the SSL security considerations to first advocate ↵ | Antoine Pitrou | 2014-03-22 | 1 | -0/+2 | |
| | | | | using create_default_context(). | |||||
* | Merge in all documentation changes since branching 3.4.0rc1. | Larry Hastings | 2014-03-15 | 1 | -3/+3 | |
| | ||||||
* | asyncio.docs: Document subprocess_exec and subprocess_shell. Issue #20694. | Yury Selivanov | 2014-02-20 | 1 | -5/+49 | |
| | ||||||
* | asyncio.docs: Improve wordings; add a note to the Coroutines section. Issue ↵ | Yury Selivanov | 2014-02-20 | 1 | -22/+23 | |
| | | | | #20706 | |||||
* | asyncio.docs: Document Error Handling API and asyncio.Handle | Yury Selivanov | 2014-02-19 | 1 | -2/+67 | |
| | ||||||
* | asyncio doc: remove reference to _DEBUG (now replaced with PYTHONASYNCIODEBUG | Victor Stinner | 2014-02-20 | 1 | -1/+1 | |
| | | | | env var), document the default debug mode | |||||
* | asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests. | Victor Stinner | 2014-02-19 | 1 | -0/+16 | |
| | | | | | | Add also a PYTHONASYNCIODEBUG environment variable to debug coroutines since Python startup, to be able to debug coroutines defined directly in the asyncio module. | |||||
* | asyncio: document new create_unix_connection() and create_unix_server() methods | Victor Stinner | 2014-02-19 | 1 | -5/+38 | |
| | | | | of BaseEventLoop | |||||
* | Issue #20493: Document that asyncio should not exceed one day | Victor Stinner | 2014-02-18 | 1 | -0/+4 | |
| | ||||||
* | ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if | Victor Stinner | 2014-02-13 | 1 | -0/+6 | |
| | | | | | the address is not resolved (hostname instead of an IP address) for AF_INET and AF_INET6 address families. | |||||
* | Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors. | Larry Hastings | 2014-02-10 | 1 | -1/+1 | |
| | ||||||
* | More complete documentation of event loops and policies. | Eli Bendersky | 2014-02-09 | 1 | -15/+54 | |
| | | | | | | | Documented the AbstractEventLoopPolicy interface explicitly and explained the relation between the global loop & policy access functions. Added an initial section that explains the connections in general terms. Documented missing XXX methods. | |||||
* | Various formatting & grammar fixes in asyncio* docs. | Eli Bendersky | 2014-02-09 | 1 | -4/+4 | |
| | ||||||
* | asyncio doc: document missing event loop methods | Victor Stinner | 2014-02-08 | 1 | -4/+86 | |
| | ||||||
* | Issue #20505: Remove resolution and _granularity from selectors and asyncio | Victor Stinner | 2014-02-07 | 1 | -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 it | Victor Stinner | 2014-02-03 | 1 | -1/+2 | |
| | | | | requires at least Mac OS X 10.6. | |||||
* | asyncio: document the new asyncio.subprocess module | Victor Stinner | 2014-02-02 | 1 | -0/+5 | |
| | ||||||
* | asyncio doc: add "asyncio-" prefix to references | Victor Stinner | 2014-02-02 | 1 | -6/+6 | |
| | ||||||
* | asyncio doc: document the granularity of the event loop | Victor Stinner | 2014-02-01 | 1 | -1/+17 | |
| | | | | Improve also the "Logging" section | |||||
* | Fix doc reference to OS X 10.9 Mavericks. | Ned Deily | 2014-01-27 | 1 | -1/+1 | |
| | ||||||
* | asyncio doc: list Windows and Mac OS X limitations and explain how to work | Victor Stinner | 2014-01-28 | 1 | -4/+13 | |
| | | | | around them | |||||
* | asyncio doc: subprocess_exec/subprocess_shell are not available on Windows | Victor Stinner | 2014-01-27 | 1 | -0/+4 | |
| | ||||||
* | asyncio: document add_signal_handler/remove_signal_handler, add an example for | Victor Stinner | 2014-01-27 | 1 | -0/+47 | |
| | | | | signals | |||||
* | Merge latest Tulip into asyncio | Victor Stinner | 2014-01-26 | 1 | -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: maximum | Victor Stinner | 2014-01-25 | 1 | -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 page | Victor Stinner | 2014-01-24 | 1 | -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 Stinner | 2014-01-23 | 1 | -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 Stinner | 2014-01-16 | 1 | -8/+8 | |
| | ||||||
* | Fix Sphinx markup for asyncio modules so :mod:`asyncio` links work. | R David Murray | 2013-12-20 | 1 | -1/+1 | |
| | ||||||
* | asyncio doc: rewrite the callback hello world to use call_soon() instead of a | Victor Stinner | 2013-12-10 | 1 | -1/+1 | |
| | | | | direct call. | |||||
* | asyncio doc: oh, asyncio module has its own Future class | Victor Stinner | 2013-12-03 | 1 | -1/+1 | |
| | | | | | Improve also wait() documentation: mention that the first parameter is a sequence |