You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It appears that when terminating a running Python session - a SIGKILL is sent to the underlying process. While this does indeed kill the underlying process, it also prevents any sort of clean-up behavior (i.e., context managers, signal handlers, etc.).
It'd be great if I could either:
Configure the signal being sent on session termination (i.e., a SIGTERM instead of a SIGKILL)