Eryk Sun <eryk...@gmail.com> added the comment:

> all the input before the ignored Ctrl+C is lost

The console host process doesn't know that Python is ignoring Ctrl+C, so it 
cancels the read and flushes the input buffer. For now, we have to accept this 
as a limitation of relying on the high-level console API (i.e. ReadConsoleW 
with the default settings), which implements command-line editing, aliases and 
history completely in the console host process. Restarting the read with a 
flushed input buffer is better than raising EOFError or exiting the REPL.

In the future, Python's console readline implementation could hook deeper into 
the operation by temporarily disabling the console's ENABLE_PROCESSED_INPUT 
mode and using the pInputControl parameter to handle ^C and ^H (backspace). 
This would be fairly involved but still an imperfect solution because ^C will 
replace whichever character is under the cursor (fine if the cursor is at the 
end of the line, but otherwise pretty clunky). The only way to have complete 
control is to use the low-level ReadConsoleInput function. pyreadline 
implements this via ctypes.

----------

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

Reply via email to