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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e77a992a0d77fa09f0f541d8730d439abda81187;p=python Add E_INDENT -- new error to check for bad indentation --- diff --git a/Include/errcode.h b/Include/errcode.h index feaffc777c..565578269a 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 }