Fix doco. Backport candidate.

This commit is contained in:
Neal Norwitz 2006-07-10 00:05:34 +00:00
parent ed65755608
commit 8440483fea
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ Replacing os.system()
sts = os.system("mycmd" + " myarg")
==>
p = Popen("mycmd" + " myarg", shell=True)
sts = os.waitpid(p.pid, 0)
pid, sts = os.waitpid(p.pid, 0)
Note: