commit | 73bc75bb41920b70f7c2076c56029aaadc34e274 | [log] [tgz] |
---|---|---|
author | R. David Murray <rdmurray@bitdance.com> | Fri Feb 05 16:25:12 2010 +0000 |
committer | R. David Murray <rdmurray@bitdance.com> | Fri Feb 05 16:25:12 2010 +0000 |
tree | 9eabe4943c31025c3647b5b817132f126487c223 | |
parent | 56f0aa6c89fc8ff3a587062c7fba247d0aec504b [diff] [blame] |
Fix raw_input->input in Popen doc patch.
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 5680b38..e6f91b1 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst
@@ -52,7 +52,7 @@ 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)