Tagged Questions
5
votes
2answers
831 views
Python: Why does `sys.exit(msg)` called from a thread not print `msg` to stderr?
Today I ran against the fact, that sys.exit() called from a child-thread does not kill the main process. I did not know this before, and this is okay, but I needed long time to realize this. It would ...