Where can I find information about meaning of exit codes of \"python\" process on Unix? For instance, if I do \"python thisfiledoesntexist.py\", I get exit code 2
Summar
Maybe exit code constants from os module can help you. Also have a look at sys.exit documentation.