This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: readline module description should mention raw_input()
Type: Stage:
Components: Documentation Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, thomharp
Priority: normal Keywords:

Created on 2006-07-26 18:13 by thomharp, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg29297 - (view) Author: Thom Harp (thomharp) Date: 2006-07-26 18:13
The description of the readline module in the library
reference should mention that it alters the behavior of
the input() and raw_input() functions.  Without this
change, it isn't obvious how to use readline to provide
a command line in applications.

The information requested *is* in the docs where
input() and raw_input() are described, but an
inexperienced python programmer, just learning his way
around the standard library, won't know that and may
conclude that the readline module exists only because
it's used for interactive python.
msg29298 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2006-07-29 14:25
Logged In: YES 
user_id=11375

I've added a mention to the first paragraph of the module's
docs. Thanks for the suggestion!
History
Date User Action Args
2022-04-11 14:56:19adminsetgithub: 43725
2006-07-26 18:13:37thomharpcreate