Commit 8440483f authored by Neal Norwitz's avatar Neal Norwitz

Fix doco. Backport candidate.

parent ed657556
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment