summaryrefslogtreecommitdiff
path: root/Include/pyerrors.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1990-10-14 20:00:25 +0000
committerGuido van Rossum <guido@python.org>1990-10-14 20:00:25 +0000
commit5122aee34e0090e5e287617a557ebd8f994cc47c (patch)
treeed19145170fd524374db74a23b61f75411caa738 /Include/pyerrors.h
parentfddb56c0325999df8f56c0bc9865d1ec568b20c5 (diff)
downloadcpython-5122aee34e0090e5e287617a557ebd8f994cc47c.tar.gz
Made exception objects extern.
Added convenience functions.
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r--Include/pyerrors.h21
1 files changed, 14 insertions, 7 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h
index 35faaa9581..c8fc63b1e3 100644
--- a/Include/pyerrors.h
+++ b/Include/pyerrors.h
@@ -8,10 +8,17 @@ void err_get PROTO((object **, object **));
void err_clear PROTO((void));
/* Predefined exceptions (in run.c) */
-object *RuntimeError; /* Raised by error() */
-object *EOFError; /* Raised by eof_error() */
-object *TypeError; /* Rased by type_error() */
-object *MemoryError; /* Raised by mem_error() */
-object *NameError; /* Raised by name_error() */
-object *SystemError; /* Raised by sys_error() */
-object *KeyboardInterrupt; /* Raised by intr_error() */
+
+extern object *RuntimeError;
+extern object *EOFError;
+extern object *TypeError;
+extern object *MemoryError;
+extern object *NameError;
+extern object *SystemError;
+extern object *KeyboardInterrupt;
+
+/* Convenience functions */
+
+extern int err_badarg PROTO((void));
+extern object *err_nomem PROTO((void));
+extern object *err_errno PROTO((object *));