]> 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 c92a43fd3c1fb20f4265b202fe70f717439ed223..9eba5973418ed9a3fa6b7389d1e812610f27503d 100644 (file)
@@ -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*
index 90658a1d0fcf9b5faedf4a92457f82219cd6bc8a..ce47b5e9ad8d2c9c1027aadf7f29ef21336d76d0 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*