diff -r 0ae254c11921 Doc/library/subprocess.rst --- a/Doc/library/subprocess.rst Mon Mar 10 19:26:57 2014 +0100 +++ b/Doc/library/subprocess.rst Wed Mar 12 12:39:38 2014 +0100 @@ -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 -r 0ae254c11921 Lib/subprocess.py --- a/Lib/subprocess.py Mon Mar 10 19:26:57 2014 +0100 +++ b/Lib/subprocess.py Wed Mar 12 12:39:38 2014 +0100 @@ -11,7 +11,7 @@ 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*