Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add the link to asyncio source code in the docs (GH-2373) (GH-2884) | Mariatta | 2017-07-26 | 1 | -3/+7 |
| | | | (cherry picked from commit 627d2c8e8dc9cfe6c1cdfd9b34899eb30b600a88) | ||||
* | [3.6] bpo-29933: Improve set_write_buffer_limits description (GH-2262) (GH-2532) | Kojo Idrissa | 2017-07-02 | 1 | -1/+7 |
| | | | | | Improve the description of the high and low parameters for set_write_buffer_limits. Also fixed a small grammatical issue. (cherry picked from commit 5200a7c7f9ea65a96330c5f276f4acc6ec70854e) | ||||
* | Fix a minor typo. (#1032) (#1037) | Barry Warsaw | 2017-04-07 | 1 | -1/+1 |
| | | | (cherry picked from commit dd9a0a14c89d57e43898d4b866b8c161e4ff8506) | ||||
* | Asyncio documentation: remove `self` from method signatures (GH-334) (GH-337) | Mariatta | 2017-02-27 | 1 | -3/+3 |
| | | | (cherry picked from commit 091b84f23a2ff57e8320ebf6fdf889af39096ab9) | ||||
* | Issue #28089: Document TCP_NODELAY in asyncio | Yury Selivanov | 2016-12-12 | 1 | -0/+3 |
| | | | | Initial patch by Mariatta Wijaya. | ||||
* | Issue #28088: Don't include self in method signature | Berker Peksag | 2016-11-07 | 1 | -4/+4 |
| | | | | Also update versionadded directive to 3.5.3. | ||||
* | Issue #28088: Document Transport.set_protocol and get_protocol | INADA Naoki | 2016-11-04 | 1 | -0/+13 |
| | |||||
* | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -2/+2 |
| | |||||
* | Minor spelling fixes | Martin Panter | 2016-08-20 | 1 | -1/+1 |
| | |||||
* | Issue #27700: Document AbstractEventLoop, not BaseEventLoop. | Guido van Rossum | 2016-08-08 | 1 | -9/+9 |
| | |||||
* | Merge 3.4 | Yury Selivanov | 2015-12-17 | 1 | -3/+3 |
|\ | |||||
| * | docs/asyncio: Twek sections names per Nick Coghlan suggestion | Yury Selivanov | 2015-12-17 | 1 | -3/+3 |
| | | |||||
* | | Issue #25593: Change semantics of EventLoop.stop(). (Merge 3.4->3.5) | Guido van Rossum | 2015-11-19 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #25593: Change semantics of EventLoop.stop(). | Guido van Rossum | 2015-11-19 | 1 | -1/+1 |
| | | |||||
* | | asyncio.docs: Document Transport.is_closing (merge 3.4) | Yury Selivanov | 2015-11-16 | 1 | -0/+5 |
|\ \ | |/ | |||||
| * | asyncio.docs: Document Transport.is_closing | Yury Selivanov | 2015-11-16 | 1 | -0/+5 |
| | | |||||
* | | Issue #25523: Merge a-to-an corrections from 3.4. | Serhiy Storchaka | 2015-11-02 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #25523: Further a-to-an corrections. | Serhiy Storchaka | 2015-11-02 | 1 | -1/+1 |
| | | |||||
* | | Issue #25161: Merge full stops from 3.4 into 3.5 | Martin Panter | 2015-10-10 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #25161: Add full stops in documentation; patch by Takase Arihiro | Martin Panter | 2015-10-10 | 1 | -1/+1 |
| | | |||||
* | | Issue #25114: Adjust versionchanged in the doc | Victor Stinner | 2015-09-21 | 1 | -1/+1 |
| | | |||||
* | | Merge 3.4 (asyncio) | Victor Stinner | 2015-09-21 | 1 | -0/+5 |
|\ \ | |/ | |||||
| * | Issue #25114, asyncio: add ssl_object extra info to SSL transports | Victor Stinner | 2015-09-21 | 1 | -0/+5 |
| | | | | | | | | | | | | This info is required on Python 3.5 and newer to get specific information on the SSL object, like getting the binary peer certificate (instead of getting it as text). | ||||
* | | Marked keystrokes with the :kbd: role. | Serhiy Storchaka | 2015-09-12 | 1 | -1/+1 |
|\ \ | |/ | | | | | Fixed the case of the "Ctrl-" prefixes. | ||||
| * | Marked keystrokes with the :kbd: role. | Serhiy Storchaka | 2015-09-12 | 1 | -1/+1 |
| | | | | | | | | Fixed the case of the "Ctrl-" prefixes. | ||||
* | | Issue #24487: Rename async() -> ensure_future() in asyncio docs. | Yury Selivanov | 2015-07-01 | 1 | -3/+3 |
|/ | | | | Patch by Martin Panter. | ||||
* | asyncio: add a note about (non) thread safety in each class | Victor Stinner | 2015-02-25 | 1 | -0/+2 |
| | |||||
* | asyncio doc: document Protocol state machine | Victor Stinner | 2015-01-29 | 1 | -0/+8 |
| | |||||
* | Reflow paragraph. | R David Murray | 2014-11-02 | 1 | -2/+2 |
| | |||||
* | Fix English phrasing. | R David Murray | 2014-11-02 | 1 | -1/+1 |
| | |||||
* | asyncio doc: document BaseSubprocessTransport.close() method | Victor Stinner | 2014-10-13 | 1 | -4/+15 |
| | | | | | Modify also the get_pipe_transport() doc to mention explicitly the supported file descriptors. | ||||
* | asyncio doc: add TCP echo client/server using streams | Victor Stinner | 2014-10-12 | 1 | -8/+24 |
| | |||||
* | asyncio doc: enhance TCP client example | Victor Stinner | 2014-10-12 | 1 | -7/+12 |
| | |||||
* | asyncio doc: clarify how servers create protocol instances | Victor Stinner | 2014-10-12 | 1 | -6/+8 |
| | |||||
* | asyncio doc: add UDP client and server examples | Victor Stinner | 2014-10-12 | 1 | -0/+82 |
| | |||||
* | asyncio doc: use server.wait_closed() in TCP echo server example | Victor Stinner | 2014-10-12 | 1 | -7/+14 |
| | |||||
* | 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 | -6/+62 |
| | | | | socket | ||||
* | Revert #22251 | Berker Peksag | 2014-09-27 | 1 | -2/+0 |
| | |||||
* | Issue #22251: Fix ReST markup to avoid errors building docs. | Berker Peksag | 2014-09-27 | 1 | -0/+2 |
| | |||||
* | asyncio, tulip issue 203: Add _FlowControlMixin.get_write_buffer_limits() method | Victor Stinner | 2014-08-25 | 1 | -0/+12 |
| | |||||
* | Fix grammar | Andrew Svetlov | 2014-07-23 | 1 | -1/+1 |
| | |||||
* | Issue #21700: Fix asyncio doc, add DatagramProtocol | Victor Stinner | 2014-06-10 | 1 | -6/+6 |
| | |||||
* | Fix doc typo. | Guido van Rossum | 2014-03-30 | 1 | -1/+1 |
| | |||||
* | Close #21010: Fix typo in asyncio doc. Patch written by Claudiu Popa. | Victor Stinner | 2014-03-21 | 1 | -1/+1 |
| | |||||
* | Merge in all documentation changes since branching 3.4.0rc1. | Larry Hastings | 2014-03-16 | 1 | -3/+12 |
| | |||||
* | Spelling corrections. Submitted to python-dev by python@mrabarnett.plus.com | Brian Curtin | 2014-02-09 | 1 | -1/+1 |
| | |||||
* | asyncio doc: add "asyncio-" prefix to references | Victor Stinner | 2014-02-02 | 1 | -5/+5 |
| | |||||
* | asyncio doc: move AbstractServer to the event loop page | Victor Stinner | 2014-01-24 | 1 | -16/+0 |
| | | | | | Add also entries in the table of content for each synchronization primitive class. | ||||
* | asyncio doc: add a "Coroutines and protocols" section | Victor Stinner | 2014-01-24 | 1 | -0/+12 |
| |