]> granicus.if.org Git - python/commitdiff
remove unnecessary word (closes #19060)
authorBenjamin Peterson <benjamin@python.org>
Thu, 13 Mar 2014 02:41:35 +0000 (21:41 -0500)
committerBenjamin Peterson <benjamin@python.org>
Thu, 13 Mar 2014 02:41:35 +0000 (21:41 -0500)
Patch by Anastasia Filatova.

Doc/library/subprocess.rst
Lib/subprocess.py

index c53688453000eeaa1a8e1f8e54d949f3f7ff1072..347dcc3e50a0a89d3a24f8fdd14328da63070175 100644 (file)
@@ -9,7 +9,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*
index 86592a111de18fb8a280c25da0644d6acedf0f77..0178b083d0e9ca825805c61e1b63799cfab5413e 100644 (file)
@@ -11,7 +11,7 @@ r"""subprocess - Subprocesses with accessible I/O streams
 
 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*