From 2c4f8d12f0d44c926ddd62f4e84c3fae1ffd7c44 Mon Sep 17 00:00:00 2001 From: "R. David Murray" Date: Fri, 5 Feb 2010 16:26:37 +0000 Subject: [PATCH] Merged revisions 77987 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r77987 | r.david.murray | 2010-02-05 11:25:12 -0500 (Fri, 05 Feb 2010) | 2 lines Fix raw_input->input in Popen doc patch. ........ --- Doc/library/subprocess.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index f475e35d7800..834ec58bf956 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -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) -- 2.47.3