[Python-checkins] cpython (merge 3.4 -> 3.5): Merge 3.4 (asyncio doc)

victor.stinner python-checkins at python.org
Wed Sep 2 15:41:44 CEST 2015


https://hg.python.org/cpython/rev/1b22fa5f91ce
changeset:   97578:1b22fa5f91ce
branch:      3.5
parent:      97564:447d8e6b17b9
parent:      97577:d65d3222538d
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Wed Sep 02 15:40:56 2015 +0200
summary:
  Merge 3.4 (asyncio doc)

files:
  Doc/library/asyncio-subprocess.rst |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst
--- a/Doc/library/asyncio-subprocess.rst
+++ b/Doc/library/asyncio-subprocess.rst
@@ -303,7 +303,7 @@
 .. _asyncio-subprocess-threads:
 
 Subprocess and threads
-======================
+----------------------
 
 asyncio supports running subprocesses from different threads, but there
 are limits:
@@ -322,10 +322,10 @@
 
 
 Subprocess examples
-===================
+-------------------
 
 Subprocess using transport and protocol
----------------------------------------
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 Example of a subprocess protocol using to get the output of a subprocess and to
 wait for the subprocess exit. The subprocess is created by the
@@ -381,7 +381,7 @@
 
 
 Subprocess using streams
-------------------------
+^^^^^^^^^^^^^^^^^^^^^^^^
 
 Example using the :class:`~asyncio.subprocess.Process` class to control the
 subprocess and the :class:`StreamReader` class to read from the standard

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list