diff options
author | Guido van Rossum <guido@python.org> | 1991-12-31 13:13:47 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-12-31 13:13:47 (GMT) |
commit | 768a3f0ab8c1abdf14372cbdf3c83cc93b28ac4e (patch) | |
tree | 28fee2f993254aa1fb288591e2e70daad3db54f0 /Include/pyerrors.h | |
parent | a9df32ab2aaafe4eb7181916737caf5cb35eed8e (diff) | |
download | cpython-768a3f0ab8c1abdf14372cbdf3c83cc93b28ac4e.zip cpython-768a3f0ab8c1abdf14372cbdf3c83cc93b28ac4e.tar.gz cpython-768a3f0ab8c1abdf14372cbdf3c83cc93b28ac4e.tar.bz2 |
Added SystemExit.
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r-- | Include/pyerrors.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index ce00e3e..1f7cfc3 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -46,6 +46,7 @@ extern object *OverflowError; extern object *RuntimeError; extern object *SyntaxError; extern object *SystemError; +extern object *SystemExit; extern object *TypeError; extern object *ValueError; extern object *ZeroDivisionError; |