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 draghuram
Recipients ajaksu2, draghuram, rickbking
Date 2008-04-07.20:54:38
SpamBayes Score 0.13484485
Marked as misclassified No
Message-id <1207601680.45.0.174275173321.issue2571@psf.upfronthosting.co.za>
In-reply-to
Content
The doc for "cmd" at
http://docs.python.org/dev/library/cmd.html#module-cmd says:

"Instances of Cmd subclasses have some public instance variables:
.
.
.
Cmd.use_rawinput¶
    A flag, defaulting to true. If true, cmdloop() uses raw_input() to
display a prompt and read the next command; if false, sys.stdout.write()
and sys.stdin.readline() are used. (This means that by importing
readline, on systems that support it, the interpreter will automatically
support Emacs-like line editing and command-history keystrokes.)"

So it is for the user to modify use_rawinput as required. This flag has
been introduced in #405952. BTW, this one and other similar variables
are at class level and are not instance variables. Isn't it?
History
Date User Action Args
2008-04-07 20:54:40draghuramsetspambayes_score: 0.134845 -> 0.13484485
recipients: + draghuram, rickbking, ajaksu2
2008-04-07 20:54:40draghuramsetspambayes_score: 0.134845 -> 0.134845
messageid: <1207601680.45.0.174275173321.issue2571@psf.upfronthosting.co.za>
2008-04-07 20:54:39draghuramlinkissue2571 messages
2008-04-07 20:54:38draghuramcreate