Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-33649: A copy-editing pass on asyncio documentation (GH-9376) | Elvis Pranskevichus | 2018-09-17 | 1 | -36/+32 |
| | |||||
* | bpo-33649: Add low-level APIs index. (GH-9364) | Yury Selivanov | 2018-09-17 | 1 | -5/+5 |
| | |||||
* | bpo-33649: Add high-level APIs cheat-sheet (GH-9319) | Yury Selivanov | 2018-09-14 | 1 | -0/+2 |
| | |||||
* | bpo-34666: Implement stream.awrite() and stream.aclose() (GH-9274) | Andrew Svetlov | 2018-09-13 | 1 | -21/+45 |
| | |||||
* | bpo-33649: Cleanup asyncio/streams and asyncio/synchronization docs (GH-9192) | Yury Selivanov | 2018-09-11 | 1 | -113/+73 |
| | |||||
* | bpo-34613: document the correct value of limit argument of ↵ | Bram | 2018-09-11 | 1 | -1/+3 |
| | | | | | | | | | | asyncio.StreamReader (GH-9121) The default value of asyncio.StreamReader *limit* is `_DEFAULT_LIMIT` instead of `None`. <!-- issue-number: [bpo-34613](https://www.bugs.python.org/issue34613) --> https://bugs.python.org/issue34613 <!-- /issue-number --> | ||||
* | bpo-33649: First asyncio docs improvement pass (GH-9142) | Yury Selivanov | 2018-09-11 | 1 | -152/+142 |
| | | | | | | | | | | | | | Rewritten/updated sections: * Event Loop APIs * Transports & Protocols * Streams * Exceptions * Policies * Queues * Subprocesses * Platforms | ||||
* | bpo-34335: Use async/await syntax in documentation examples (GH-8674) | Mikhail Terekhov | 2018-08-07 | 1 | -2/+1 |
| | |||||
* | bpo-33736: Improve the documentation of asyncio stream APIs (GH-7326) | Elvis Pranskevichus | 2018-06-08 | 1 | -30/+67 |
| | |||||
* | bpo-32391: Implement StreamWriter.wait_closed() (#5281) | Andrew Svetlov | 2018-01-25 | 1 | -0/+15 |
| | |||||
* | bpo-32258: Replace 'yield from' to 'await' in asyncio docs (#4779) | Andrew Svetlov | 2017-12-11 | 1 | -16/+13 |
| | | | | | | * Replace 'yield from' to 'await' in asyncio docs * Fix docstrings | ||||
* | bpo-32154: Remove asyncio.windows_utils.socketpair (#4609) | Victor Stinner | 2017-11-28 | 1 | -4/+1 |
| | |||||
* | Add the link to asyncio source code in the docs (GH-2373) | lf | 2017-07-25 | 1 | -0/+2 |
| | |||||
* | Fix default value of StreamReader.readuntil() | Berker Peksag | 2016-10-18 | 1 | -1/+1 |
| | | | | Reported by Sam Lunt on docs@p.o. | ||||
* | Issue #27700: Document AbstractEventLoop, not BaseEventLoop. | Guido van Rossum | 2016-08-08 | 1 | -9/+9 |
| | |||||
* | docs: Update asyncio docs & whatsnew | Yury Selivanov | 2016-05-16 | 1 | -0/+36 |
| | |||||
* | Trivial typo | Jesus Cea | 2016-04-19 | 1 | -1/+1 |
| | |||||
* | Issue #26368: fix typo in asynchio stream doc, reported by Ryan Stuart. | Ned Deily | 2016-02-16 | 1 | -1/+1 |
| | |||||
* | docs/asyncio: Twek sections names per Nick Coghlan suggestion | Yury Selivanov | 2015-12-16 | 1 | -3/+3 |
| | |||||
* | Issue #24885: Update note in docs about stream convenience functions. | Guido van Rossum | 2015-10-19 | 1 | -4/+7 |
| | |||||
* | Fix English phrasing. | R David Murray | 2015-09-27 | 1 | -2/+2 |
| | |||||
* | Marked keystrokes with the :kbd: role. | Serhiy Storchaka | 2015-09-12 | 1 | -1/+1 |
| | | | | Fixed the case of the "Ctrl-" prefixes. | ||||
* | docs/asyncio: Document new ensure_future() and deprecated async() | Yury Selivanov | 2015-05-11 | 1 | -1/+1 |
| | |||||
* | asyncio: add a note about (non) thread safety in each class | Victor Stinner | 2015-02-25 | 1 | -0/+4 |
| | |||||
* | asyncio doc: annotate coroutine on coroutine functions and methods | Victor Stinner | 2015-02-12 | 1 | -8/+8 |
| | |||||
* | Closes #22348: Rephrase asyncio.StreamWriter.drain() documentation | Victor Stinner | 2014-11-28 | 1 | -4/+10 |
| | | | | Patch written by Martin Richard. | ||||
* | asyncio: add missing @coroutine decorator | Victor Stinner | 2014-10-13 | 1 | -0/+2 |
| | |||||
* | asyncio doc: add TCP echo client/server using streams | Victor Stinner | 2014-10-12 | 1 | -0/+78 |
| | |||||
* | asyncio doc: socket.socketpair() is not available on Windows yet | Victor Stinner | 2014-10-11 | 1 | -2/+5 |
| | |||||
* | asyncio doc: add examples showing the 3 ways to wait for data from an open | Victor Stinner | 2014-10-11 | 1 | -0/+50 |
| | | | | socket | ||||
* | asyncio doc: the "Get HTTP headers" example now supports HTTPS | Victor Stinner | 2014-10-11 | 1 | -6/+16 |
| | |||||
* | asyncio: update the doc | Victor Stinner | 2014-08-25 | 1 | -7/+6 |
| | | | | | | * dev: mention that the logging must be configured at DEBUG level * streams: drain() has no more a strange return value, it's just a standard coroutine | ||||
* | Issue #22112, asyncio doc: replace loop.create_task(coro) with | Victor Stinner | 2014-08-11 | 1 | -1/+1 |
| | | | | | | 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. | ||||
* | asyncio: improve the documentation of servers | Victor Stinner | 2014-07-11 | 1 | -12/+9 |
| | | | | | | - Fix the documentation of Server.close(): it closes sockets - Replace AbstractServer with Server - Document Server.sockets attribute | ||||
* | Update asyncio documentation | Victor Stinner | 2014-07-08 | 1 | -1/+2 |
| | | | | | | | | | - 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 | ||||
* | asyncio.docs: Improve wordings; add a note to the Coroutines section. Issue ↵ | Yury Selivanov | 2014-02-20 | 1 | -7/+7 |
| | | | | #20706 | ||||
* | asyncio.docs: Improve documentation of Streams. Issue #20696. | Yury Selivanov | 2014-02-20 | 1 | -29/+43 |
| | |||||
* | asyncio doc: sort methods | Victor Stinner | 2014-02-08 | 1 | -5/+5 |
| | |||||
* | asyncio: document the new asyncio.subprocess module | Victor Stinner | 2014-02-02 | 1 | -3/+3 |
| | |||||
* | asyncio doc: add "asyncio-" prefix to references | Victor Stinner | 2014-02-02 | 1 | -1/+1 |
| | |||||
* | asyncio doc: close the loop at exit | Victor Stinner | 2014-01-28 | 1 | -0/+1 |
| | |||||
* | asyncio: IncompleteReadError is a subclass of EOFError | Victor Stinner | 2014-01-27 | 1 | -1/+1 |
| | |||||
* | asyncio: document the IncompleteReadError exception | Victor Stinner | 2014-01-27 | 1 | -1/+20 |
| | |||||
* | asyncio doc: document StreamWriter.drain() | Victor Stinner | 2014-01-24 | 1 | -2/+2 |
| | |||||
* | asyncio doc: add a "Coroutines and protocols" section | Victor Stinner | 2014-01-24 | 1 | -0/+2 |
| | |||||
* | asyncio: mention that transports/protocols are low-level, streams are high-level | Victor Stinner | 2014-01-24 | 1 | -3/+3 |
| | |||||
* | asyncio doc: add an client example using streams | Victor Stinner | 2014-01-23 | 1 | -0/+35 |
| | |||||
* | asyncio doc: Move streams to their own dedicated page | Victor Stinner | 2014-01-23 | 1 | -0/+207 |