3
votes
1answer
244 views
Is there a way to prevent a SystemExit exception raised from sys.exit() from being caught?
The docs say that calling sys.exit() raises a SystemExit exception which can be caught in outer levels. I have a situation in which I want to definitively and unquestionably exit from inside a test …
