Tagged Questions
6
votes
2answers
2k 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 ...