Dox33 <[EMAIL PROTECTED]> writes: > Thanks for your reply. Since I momentarily do not have the ability > to build a new python executable, I would like to ask for your help > in this case. Are you able to supply me with a corrected version?
You can simply choose not to use raw_input, and use sys.stdin.readline
instead. Or define your own corrected raw_input:
def my_raw_input(msg):
print msg,
return raw_input()
--
http://mail.python.org/mailman/listinfo/python-list
