[Python-checkins] cpython (2.7): remove unnecessary word (closes #19060)

benjamin.peterson python-checkins at python.org
Thu Mar 13 03:42:21 CET 2014


http://hg.python.org/cpython/rev/1d31060f8a5c
changeset:   89617:1d31060f8a5c
branch:      2.7
user:        Benjamin Peterson <benjamin at python.org>
date:        Wed Mar 12 21:41:35 2014 -0500
summary:
  remove unnecessary word (closes #19060)

Patch by Anastasia Filatova.

files:
  Doc/library/subprocess.rst |  2 +-
  Lib/subprocess.py          |  2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -12,7 +12,7 @@
 
 The :mod:`subprocess` module allows you to spawn new processes, connect to their
 input/output/error pipes, and obtain their return codes.  This module intends to
-replace several other, older modules and functions, such as::
+replace several older modules and functions::
 
    os.system
    os.spawn*
diff --git a/Lib/subprocess.py b/Lib/subprocess.py
--- a/Lib/subprocess.py
+++ b/Lib/subprocess.py
@@ -11,7 +11,7 @@
 
 This module allows you to spawn processes, connect to their
 input/output/error pipes, and obtain their return codes.  This module
-intends to replace several other, older modules and functions, like:
+intends to replace several older modules and functions:
 
 os.system
 os.spawn*

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


More information about the Python-checkins mailing list