diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-07-17 02:31:32 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-07-17 02:31:32 (GMT) |
commit | fc095202afe7f81eeba2794e9ac12cd6252d55de (patch) | |
tree | 46bf83ad18565e46fe0447acac2e2eb9ec370a70 /Doc | |
parent | e4220a5ec69874af624af598532b04db33cc00e7 (diff) | |
download | cpython-fc095202afe7f81eeba2794e9ac12cd6252d55de.zip cpython-fc095202afe7f81eeba2794e9ac12cd6252d55de.tar.gz cpython-fc095202afe7f81eeba2794e9ac12cd6252d55de.tar.bz2 |
#15375: remove duplicated word 'child'
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/subprocess.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 5e4bcd9..3aae137 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -289,7 +289,7 @@ functions. Popen(['/bin/sh', '-c', args[0], args[1], ...]) - On Windows: the :class:`Popen` class uses CreateProcess() to execute the child + On Windows: the :class:`Popen` class uses CreateProcess() to execute the child program, which operates on strings. If *args* is a sequence, it will be converted to a string in a manner described in :ref:`converting-argument-sequence`. |