From: Guido van Rossum Date: Tue, 24 Dec 1991 13:26:33 +0000 (+0000) Subject: Added ImportError. X-Git-Tag: v0.9.8~675 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=85fc392b9e73998bbc1e983fc70068be2a2cacd0;p=thirdparty%2FPython%2Fcpython.git Added ImportError. --- diff --git a/Include/errors.h b/Include/errors.h index b6735a7550dd..ce00e3e9c155 100755 --- a/Include/errors.h +++ b/Include/errors.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; diff --git a/Include/pyerrors.h b/Include/pyerrors.h index b6735a7550dd..ce00e3e9c155 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;