pathbird / poetry-kernel

Python Jupyter kernel using Poetry for reproducible notebooks
MIT License
246 stars 7 forks source link

modified forward_signals to be compatible with windows #4

Closed gpfv closed 2 years ago

gpfv commented 2 years ago

in regard to issue #3

removed signal.SIGTERM from forward_signals, as well as two others as they could not be used by signal.signal (ValueError: invalid signal value)

from https://docs.python.org/3/library/signal.html signal.CTRL_C_EVENT The signal corresponding to the Ctrl+C keystroke event. This signal can only be used with os.kill()

same for signal.CTRL_BREAK_EVENT