remove unnecessary word (closes #19060)

Patch by Anastasia Filatova.
This commit is contained in:
Benjamin Peterson 2014-03-12 21:41:35 -05:00
parent fa5e6e4773
commit 5eea8a7780
2 changed files with 2 additions and 2 deletions

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

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