diff options
author | Guido van Rossum <guido@python.org> | 1991-12-24 13:26:33 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-12-24 13:26:33 (GMT) |
commit | 85fc392b9e73998bbc1e983fc70068be2a2cacd0 (patch) | |
tree | 565e2a5b6c7329873577a352ca7fbab3c8db6f8c /Include/pyerrors.h | |
parent | 86d8e634337c3e4b36c504d16e6ff8d1a5fd89f5 (diff) | |
download | cpython-85fc392b9e73998bbc1e983fc70068be2a2cacd0.zip cpython-85fc392b9e73998bbc1e983fc70068be2a2cacd0.tar.gz cpython-85fc392b9e73998bbc1e983fc70068be2a2cacd0.tar.bz2 |
Added ImportError.
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 b6735a7..ce00e3e 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -36,6 +36,7 @@ void err_clear PROTO((void)); extern object *AttributeError; extern object *EOFError; extern object *IOError; +extern object *ImportError; extern object *IndexError; extern object *KeyError; extern object *KeyboardInterrupt; |