[Python-checkins] r77987 - python/branches/py3k/Doc/library/subprocess.rst

r.david.murray python-checkins at python.org
Fri Feb 5 17:25:12 CET 2010


Author: r.david.murray
Date: Fri Feb  5 17:25:12 2010
New Revision: 77987

Log:
Fix raw_input->input in Popen doc patch.


Modified:
   python/branches/py3k/Doc/library/subprocess.rst

Modified: python/branches/py3k/Doc/library/subprocess.rst
==============================================================================
--- python/branches/py3k/Doc/library/subprocess.rst	(original)
+++ python/branches/py3k/Doc/library/subprocess.rst	Fri Feb  5 17:25:12 2010
@@ -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)


More information about the Python-checkins mailing list