diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-07-29 14:21:15 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-07-29 14:21:15 (GMT) |
commit | dafb1e59c95f1eafdc6665588a22b6ee57ed3401 (patch) | |
tree | d1d3cf5cf200aefb381006cf1faf4f0e6cdd6587 /Doc | |
parent | 3ec3f78c8a08c5b69855e5b6eb37fe22f0719b52 (diff) | |
download | cpython-dafb1e59c95f1eafdc6665588a22b6ee57ed3401.zip cpython-dafb1e59c95f1eafdc6665588a22b6ee57ed3401.tar.gz cpython-dafb1e59c95f1eafdc6665588a22b6ee57ed3401.tar.bz2 |
[Bug #1529157] Mention raw_input() and input(); while I'm at it, reword the description a bit
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libreadline.tex | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Doc/lib/libreadline.tex b/Doc/lib/libreadline.tex index ac8e23f..dec37b6 100644 --- a/Doc/lib/libreadline.tex +++ b/Doc/lib/libreadline.tex @@ -7,10 +7,13 @@ \modulesynopsis{GNU readline support for Python.} -The \module{readline} module defines a number of functions used either -directly or from the \refmodule{rlcompleter} module to facilitate -completion and history file read and write from the Python -interpreter. +The \module{readline} module defines a number of functions to +facilitate completion and reading/writing of history files from the +Python interpreter. This module can be used directly or via the +\refmodule{rlcompleter} module. Settings made using +this module affect the behaviour of both the interpreter's interactive prompt +and the prompts offered by the \function{raw_input()} and \function{input()} +built-in functions. The \module{readline} module defines the following functions: |