From: Benjamin Peterson Date: Thu, 13 Mar 2014 02:41:35 +0000 (-0500) Subject: remove unnecessary word (closes #19060) X-Git-Tag: v2.7.7rc1~131 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=944996ff20c42d00f374f1816fdea633b412e832;p=thirdparty%2FPython%2Fcpython.git remove unnecessary word (closes #19060) Patch by Anastasia Filatova. --- diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index c92a43fd3c1f..9eba5973418e 100644 --- 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 index 90658a1d0fcf..ce47b5e9ad8d 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -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*