◐ Shell
clean mode source ↗

bpo-36368: Ignore SIGINT in SharedMemoryManager servers. by pierreglaser · Pull Request #12483 · python/cpython

When starting a SharedMemoryManager in an interactive session, any KeyboardInterrupt event will be transmitted to the (sub)process running the shared memory server, which causes the Manager to be unusable thereafter.

This PR catches SIGINT signals in server processes.

https://bugs.python.org/issue36368