]> granicus.if.org Git - python/commitdiff
Change the description of input() -- it is exactly equivalent to
authorGuido van Rossum <guido@python.org>
Wed, 17 Jun 1998 15:16:40 +0000 (15:16 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 17 Jun 1998 15:16:40 +0000 (15:16 +0000)
eval(raw_input(s)).  The statement about breaking a long expression
over multiple lines is no longer true.

Doc/lib/libfuncs.tex

index 134573464b96182a754bfb3faa15bee3c80ded27..451c1a8e277598548965667d447ec904bf4d1c06 100644 (file)
@@ -273,11 +273,7 @@ module from which it is called).
 \end{funcdesc}
 
 \begin{funcdesc}{input}{\optional{prompt}}
-  Almost equivalent to \code{eval(raw_input(\var{prompt}))}.  Like
-  \function{raw_input()}, the \var{prompt} argument is optional, and the
-  \module{readline} module is used when loaded.  The difference
-  is that a long input expression may be broken over multiple lines using
-  the backslash convention.
+  Equivalent to \code{eval(raw_input(\var{prompt}))}.
 \end{funcdesc}
 
 \begin{funcdesc}{intern}{string}