From: Guido van Rossum Date: Thu, 9 Apr 1998 21:37:20 +0000 (+0000) Subject: Add E_INDENT -- new error to check for bad indentation X-Git-Tag: v1.5.1~110 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e77a992a0d77fa09f0f541d8730d439abda81187;p=thirdparty%2FPython%2Fcpython.git Add E_INDENT -- new error to check for bad indentation --- diff --git a/Include/errcode.h b/Include/errcode.h index feaffc777c6e..565578269afd 100644 --- a/Include/errcode.h +++ b/Include/errcode.h @@ -51,6 +51,7 @@ PERFORMANCE OF THIS SOFTWARE. #define E_NOMEM 15 /* Ran out of memory */ #define E_DONE 16 /* Parsing complete */ #define E_ERROR 17 /* Execution error */ +#define E_INDENT 18 /* Invalid indentation detected */ #ifdef __cplusplus }