Initial revision

This commit is contained in:
Guido van Rossum 1990-10-14 12:07:46 +00:00
parent c636014c43
commit 85a5fbbdfe
78 changed files with 13589 additions and 0 deletions

17
Include/pyerrors.h Normal file
View file

@ -0,0 +1,17 @@
/* Error handling definitions */
void err_set PROTO((object *));
void err_setval PROTO((object *, object *));
void err_setstr PROTO((object *, char *));
int err_occurred PROTO((void));
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() */