Author: georg.brandl
Date: Wed Sep 12 23:32:27 2007
New Revision: 58132

Modified:
   python/branches/py3k/Doc/library/functions.rst
Log:
Oops.


Modified: python/branches/py3k/Doc/library/functions.rst
==============================================================================
--- python/branches/py3k/Doc/library/functions.rst      (original)
+++ python/branches/py3k/Doc/library/functions.rst      Wed Sep 12 23:32:27 2007
@@ -531,12 +531,12 @@
    to a string (stripping a trailing newline), and returns that.  When EOF is
    read, :exc:`EOFError` is raised.  Example::
 
-      >>> s = raw_input('--> ')
+      >>> s = input('--> ')
       --> Monty Python's Flying Circus
       >>> s
       "Monty Python's Flying Circus"
 
-   If the :mod:`readline` module was loaded, then :func:`raw_input` will use it
+   If the :mod:`readline` module was loaded, then :func:`input` will use it
    to provide elaborate line editing and history features.
 
 
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to