comparison frontends/src/jp/constants.py @ 1951:ac89f455fcbf

jp: added consts for exit codes, not used yet
author Goffi <goffi@goffi.org>
date Sat, 23 Apr 2016 23:30:06 +0200
parents 227a4e617549
children 3d633458d962
comparison
equal deleted inserted replaced
1950:227a4e617549 1951:ac89f455fcbf
27 PLUGIN_OUTPUT = "outputs" 27 PLUGIN_OUTPUT = "outputs"
28 OUTPUT_TEXT = 'text' # blob of unicode text 28 OUTPUT_TEXT = 'text' # blob of unicode text
29 OUTPUT_DICT = 'dict' 29 OUTPUT_DICT = 'dict'
30 OUTPUT_LIST = 'list' 30 OUTPUT_LIST = 'list'
31 OUTPUT_TYPES = (OUTPUT_TEXT, OUTPUT_DICT, OUTPUT_LIST) 31 OUTPUT_TYPES = (OUTPUT_TEXT, OUTPUT_DICT, OUTPUT_LIST)
32
33 # exit codes
34 EXIT_OK = 0
35 EXIT_ERROR = 1 # generic error, when nothing else match
36 EXIT_BAD_ARG = 2 # arguments given by user are bad
37 EXIT_FILE_NOT_EXE = 126 # a file to be executed was found, but it was not an executable utility (cf. man 1 exit)
38 EXIT_CMD_NOT_FOUND = 127 # a utility to be executed was not found (cf. man 1 exit)
39 EXIT_SIGNAL_INT = 128 # a command was interrupted by a signal (cf. man 1 exit)