prompt-toolkit / python-prompt-toolkit

Library for building powerful interactive command line applications in Python
https://python-prompt-toolkit.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
9.1k stars 717 forks source link

Restore signal.SIGINT handler between prompts #1822

Closed tornaria closed 6 months ago

tornaria commented 7 months ago

Fixes: #1576

There are a few ways to reproduce the issue (and test the fix). The one "pure python" one is: https://github.com/prompt-toolkit/python-prompt-toolkit/issues/1576#issuecomment-1536753458

The implementation here uses ctypes to access functions in the stable ABI only.

jonathanslenders commented 6 months ago

Thanks!