commit | 2e1285baee121bd0afc3fe0176b04ea5fbe8cd49 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Thu Jul 16 07:38:35 2009 +0000 |
committer | Georg Brandl <georg@python.org> | Thu Jul 16 07:38:35 2009 +0000 |
tree | 393e34ce4acbbe99a2bd374a229a7eb3a3b3b2b7 | |
parent | da334249a7f4094deff7516ca1317f1230131052 [diff] |
#6481: fix typo in os.system() replacement.
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index b903c8c..09ae62b 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst
@@ -404,7 +404,7 @@ sts = os.system("mycmd" + " myarg") ==> p = Popen("mycmd" + " myarg", shell=True) - sts = os.waitpid(p.pid, 0) + sts = os.waitpid(p.pid, 0)[1] Notes: