cpython: 1d31060f8a5c (original) (raw)

Mercurial > cpython

changeset 89617:1d31060f8a5c 2.7

remove unnecessary word (closes #19060) Patch by Anastasia Filatova. [#19060]

Benjamin Peterson benjamin@python.org
date Wed, 12 Mar 2014 21:41:35 -0500
parents 37bca30c3e19
children 1763e27a182d
files Doc/library/subprocess.rst Lib/subprocess.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-)[+] [-] Doc/library/subprocess.rst 2 Lib/subprocess.py 2

line wrap: on

line diff

--- 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*

--- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -11,7 +11,7 @@ r"""subprocess - Subprocesses with acces 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*