diff options
Diffstat (limited to 'Include/errcode.h')
-rw-r--r-- | Include/errcode.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Include/errcode.h b/Include/errcode.h new file mode 100644 index 0000000..2b6f49b --- /dev/null +++ b/Include/errcode.h @@ -0,0 +1,12 @@ +/* Error codes passed around between file input, tokenizer, parser and + interpreter. This was necessary so we can turn them into Python + exceptions at a higher level. */ + +#define E_OK 10 /* No error */ +#define E_EOF 11 /* (Unexpected) EOF read */ +#define E_INTR 12 /* Interrupted */ +#define E_TOKEN 13 /* Bad token */ +#define E_SYNTAX 14 /* Syntax error */ +#define E_NOMEM 15 /* Ran out of memory */ +#define E_DONE 16 /* Parsing complete */ +#define E_ERROR 17 /* Execution error */ |