Commit 73bc75bb authored by R. David Murray's avatar R. David Murray

Fix raw_input->input in Popen doc patch.

parent 56f0aa6c
......@@ -52,7 +52,7 @@ This module defines one class called :class:`Popen`:
tokenization for *args*, especially in complex cases::
>>> import shlex, subprocess
>>> command_line = raw_input()
>>> command_line = input()
/bin/vikings -input eggs.txt -output "spam spam.txt" -cmd "echo '$MONEY'"
>>> args = shlex.split(command_line)
>>> print(args)
......
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