diff options
| author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-17 06:49:51 +0000 |
|---|---|---|
| committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-17 06:49:51 +0000 |
| commit | 436d2416039c42bfa9665c0572ba3ec4f877156a (patch) | |
| tree | 7ff9e8285951b40d0c1fd6c41b5a433461ec61a2 /Doc/lib/libcode.tex | |
| parent | dea90d92c29e799b501b366a2be16496d5e1f932 (diff) | |
| download | cpython-436d2416039c42bfa9665c0572ba3ec4f877156a.tar.gz | |
Get rid of a bunch more raw_input references
Diffstat (limited to 'Doc/lib/libcode.tex')
| -rw-r--r-- | Doc/lib/libcode.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libcode.tex b/Doc/lib/libcode.tex index dc4c717ad8..628a1eb735 100644 --- a/Doc/lib/libcode.tex +++ b/Doc/lib/libcode.tex @@ -167,7 +167,7 @@ Remove any unhandled source text from the input buffer. \begin{methoddesc}{raw_input}{\optional{prompt}} Write a prompt and read a line. The returned line does not include the trailing newline. When the user enters the \EOF{} key sequence, -\exception{EOFError} is raised. The base implementation uses the -built-in function \function{raw_input()}; a subclass may replace this +\exception{EOFError} is raised. The base implementation reads from +\code{sys.stdin}; a subclass may replace this with a different implementation. \end{methoddesc} |
