mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Initial revision
This commit is contained in:
parent
c636014c43
commit
85a5fbbdfe
78 changed files with 13589 additions and 0 deletions
17
Include/pyerrors.h
Normal file
17
Include/pyerrors.h
Normal 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() */
|
Loading…
Add table
Add a link
Reference in a new issue