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.

Author btimby
Recipients
Date 2007-03-28.23:01:25
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
new Example:

rl.py
--
#!/usr/bin/python
import readline

def say_hello():
	print
	print "this is my help text..."
	readline.on_new_line()

readline.set_custom_hook(say_hello)
readline.parse_and_bind("\"?\": custom")

while True:
	data = raw_input("input# ")
	print "data: ", data
--
History
Date User Action Args
2007-08-23 15:57:47adminlinkissue1690201 messages
2007-08-23 15:57:47admincreate