Commit bd2d30cf authored by Victor Stinner's avatar Victor Stinner

Issue #17209: curses.window.get_wch() now handles correctly KeyboardInterrupt (CTRL+c)

parent 6bd52022
...@@ -196,6 +196,9 @@ Core and Builtins ...@@ -196,6 +196,9 @@ Core and Builtins
Library Library
------- -------
- Issue #17209: curses.window.get_wch() now handles correctly KeyboardInterrupt
(CTRL+c).
- Issue #5713: smtplib now handles 421 (closing connection) error codes when - Issue #5713: smtplib now handles 421 (closing connection) error codes when
sending mail by closing the socket and reporting the 421 error code via the sending mail by closing the socket and reporting the 421 error code via the
exception appropriate to the command that received the error response. exception appropriate to the command that received the error response.
......
...@@ -1181,6 +1181,9 @@ PyCursesWindow_Get_WCh(PyCursesWindowObject *self, PyObject *args) ...@@ -1181,6 +1181,9 @@ PyCursesWindow_Get_WCh(PyCursesWindowObject *self, PyObject *args)
return NULL; return NULL;
} }
if (ct == ERR) { if (ct == ERR) {
if (PyErr_CheckSignals())
return NULL;
/* get_wch() returns ERR in nodelay mode */ /* get_wch() returns ERR in nodelay mode */
PyErr_SetString(PyCursesError, "no input"); PyErr_SetString(PyCursesError, "no input");
return NULL; return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment