summaryrefslogtreecommitdiff
path: root/Include/errcode.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1990-10-14 12:07:46 +0000
committerGuido van Rossum <guido@python.org>1990-10-14 12:07:46 +0000
commitdaadddf7ae82f9e352e660d14a8a27285d992b2f (patch)
treea1bf57db1c75e2a7029c8f2fad5f8dba4b9ba25c /Include/errcode.h
parent834064b52c46cec795ea6638587e0f6ba1c3f146 (diff)
downloadcpython-daadddf7ae82f9e352e660d14a8a27285d992b2f.tar.gz
Initial revision
Diffstat (limited to 'Include/errcode.h')
-rw-r--r--Include/errcode.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/Include/errcode.h b/Include/errcode.h
new file mode 100644
index 0000000000..2b6f49b0bc
--- /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 */