Nick Coghlan <ncogh...@gmail.com> added the comment: Confirmed - it's actually pressing "Ctrl-D" after entering text on the line that seems to cause strange behaviour. For example, in the following, the only letters I typed were "test" and then I just pressed "Ctrl-D" 4 times and got the output seen below:
$ ./python raw_input_test.py testtes Traceback (most recent call last): File "raw_input_test.py", line 3, in <module> c = raw_input() EOFError The "test" appeared as typed, the "tes\n" appeared after pressing Ctrl-D three times, then the 4th Ctrl-D on its own line correctly triggered EOFError. (This with 2.7a0 on Ubuntu 8.04) ---------- nosy: +ncoghlan _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue6467> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com