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 jamesthiele
Recipients
Date 2005-03-03.23:06:25
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
cmd.Cmd() takes three parameters, the second of which is a file to 
use instead of standard input by resetting self.stdin. The substitute 
input is never used.

The problem is that 'use_rawinput' is set to 1 and not changed. This 
means that raw_input() is always used and self.stdin.readline() is 
never used.
History
Date User Action Args
2008-01-20 09:57:37adminlinkissue1156280 messages
2008-01-20 09:57:37admincreate