# HG changeset patch # User Goffi # Date 1461447006 -7200 # Node ID ac89f455fcbf4d9893e3a09fe670db78a6606f18 # Parent 227a4e6175498ffd3628d13b7a974e574fa006bf jp: added consts for exit codes, not used yet diff -r 227a4e617549 -r ac89f455fcbf frontends/src/jp/constants.py --- a/frontends/src/jp/constants.py Sat Apr 23 23:10:03 2016 +0200 +++ b/frontends/src/jp/constants.py Sat Apr 23 23:30:06 2016 +0200 @@ -29,3 +29,11 @@ OUTPUT_DICT = 'dict' OUTPUT_LIST = 'list' OUTPUT_TYPES = (OUTPUT_TEXT, OUTPUT_DICT, OUTPUT_LIST) + + # exit codes + EXIT_OK = 0 + EXIT_ERROR = 1 # generic error, when nothing else match + EXIT_BAD_ARG = 2 # arguments given by user are bad + EXIT_FILE_NOT_EXE = 126 # a file to be executed was found, but it was not an executable utility (cf. man 1 exit) + EXIT_CMD_NOT_FOUND = 127 # a utility to be executed was not found (cf. man 1 exit) + EXIT_SIGNAL_INT = 128 # a command was interrupted by a signal (cf. man 1 exit)