pythonexit-code

Exit codes in Python


I got a message saying script xyz.py returned exit code 0. What does this mean?

What do the exit codes in Python mean? How many are there? Which ones are important?


Solution

  • You're looking for calls to sys.exit() (exit() calls sys.exit()) in the script. The argument to that method is returned to the environment as the exit code.

    It's fairly likely that the script is never calling the exit method, and that 0 is the default exit code.