Python exit codes

Viewed 28197

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

Summary:

from errno import errorcode
print errorcode[2]
4 Answers
Related