Commit 8bd05191 authored by Georg Brandl's avatar Georg Brandl

#3085: Fix syntax error.

parent b8242ba6
......@@ -372,13 +372,13 @@ Replacing os.popen\*
::
pipe = os.popen(cmd, mode='r', bufsize)
pipe = os.popen(cmd, 'r', bufsize)
==>
pipe = Popen(cmd, shell=True, bufsize=bufsize, stdout=PIPE).stdout
::
pipe = os.popen(cmd, mode='w', bufsize)
pipe = os.popen(cmd, 'w', bufsize)
==>
pipe = Popen(cmd, shell=True, bufsize=bufsize, stdin=PIPE).stdin
......
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