[Python-checkins] peps: Typo fix, patch by Brett Slatkin.

guido.van.rossum python-checkins at python.org
Fri Dec 27 00:13:02 CET 2013


http://hg.python.org/peps/rev/02847b00c293
changeset:   5334:02847b00c293
user:        Guido van Rossum <guido at dropbox.com>
date:        Thu Dec 26 15:12:56 2013 -0800
summary:
  Typo fix, patch by Brett Slatkin.

files:
  pep-3156.txt |  14 +++++++-------
  1 files changed, 7 insertions(+), 7 deletions(-)


diff --git a/pep-3156.txt b/pep-3156.txt
--- a/pep-3156.txt
+++ b/pep-3156.txt
@@ -444,7 +444,7 @@
 Callbacks associated with the same event loop are strictly serialized:
 one callback must finish before the next one will be called.  This is
 an important guarantee: when two or more callbacks use or modify
-shared state, each callback is guaranteed that while is running, the
+shared state, each callback is guaranteed that while it is running, the
 shared state isn't changed by another callback.
 
 - ``call_soon(callback, *args)``.  This schedules a callback to be
@@ -864,17 +864,17 @@
 
 - ``stdin``: Either a file-like object representing the pipe to be
   connected to the subprocess's standard input stream using
-  ``create_write_pipe()``, or the constant ``subprocess.PIPE`` (the
+  ``connect_write_pipe()``, or the constant ``subprocess.PIPE`` (the
   default).  By default a new pipe will be created and connected.
 
 - ``stdout``: Either a file-like object representing the pipe to be
   connected to the subprocess's standard output stream using
-  ``create_read_pipe()``, or the constant ``subprocess.PIPE`` (the
+  ``connect_read_pipe()``, or the constant ``subprocess.PIPE`` (the
   default).  By default a new pipe will be created and connected.
 
 - ``stderr``: Either a file-like object representing the pipe to be
   connected to the subprocess's standard error stream using
-  ``create_read_pipe()``, or one of the constants ``subprocess.PIPE``
+  ``connect_read_pipe()``, or one of the constants ``subprocess.PIPE``
   (the default) or ``subprocess.STDOUT``.  By default a new pipe will
   be created and connected.  When ``subprocess.STDOUT`` is specified,
   the subprocess's standard error stream will be connected to the same
@@ -1925,7 +1925,7 @@
 References
 ==========
 
-- PEP 380 describes the semantics of ``yield from``.  
+- PEP 380 describes the semantics of ``yield from``.
 
 - Greg Ewing's ``yield from`` tutorials:
   http://www.cosc.canterbury.ac.nz/greg.ewing/python/yield-from/yield_from.html
@@ -1967,14 +1967,14 @@
 as frequent email exchanges) with several Twisted developers,
 including Glyph, Brian Warner, David Reid, and Duncan McGreggor.
 
-Contributors to the implementation include 
+Contributors to the implementation include
 Eli Bendersky,
 Gustavo Carneiro (Gambit Research),
 Saúl Ibarra Corretgé,
 Geert Jansen,
 A. Jesse Jiryu Davis,
 Nikolay Kim,
-Charles-François Natali, 
+Charles-François Natali,
 Richard Oudkerk,
 Antoine Pitrou,
 Giampaolo Rodolá,

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list