Drekin added the comment:

Why are there actually more codepaths which may raise this issue? My naive idea 
would be that input() is just thin wrapper around sys.stdout.write() (for 
prompt) and sys.stdin.readline() which leads to sys.stdin.buffer.raw.read* 
where is the place where some low level OS-dependent function to actually get 
input from user is called (unistd.read or GNU readline or whatever). And also 
there is the place where the waiting for KeyboardInterrupt on Windows should 
occur.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18597>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to