[issue39811] Curses crash on ^4

Serhiy Storchaka report at bugs.python.org
Sun Mar 1 09:45:29 EST 2020


Serhiy Storchaka <storchaka+cpython at gmail.com> added the comment:

It is not related to curses and Python.

Run arbitrary program (for example `cat` or `sleep 100`) and press Ctrl-4. You will get a core dump. This is because your terminal generates the signal SIGQUIT on Ctrl-4, and default action on SIGQUIT is core dump. So it all works as expected.

If you want to change it, ignore the signal.

----------
nosy: +serhiy.storchaka
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue39811>
_______________________________________


More information about the Python-bugs-list mailing list