diff options
author | Fred Drake <fdrake@acm.org> | 2000-07-11 19:49:15 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-07-11 19:49:15 (GMT) |
commit | 4d4daed7cd9f82ae32ad8ffbbf3942abf1049b61 (patch) | |
tree | 1e5c689cef8de3324735f03d751cdfe478548b5e | |
parent | 7399b9e6e49b802809b28bec11b718093dbf138c (diff) | |
download | cpython-4d4daed7cd9f82ae32ad8ffbbf3942abf1049b61.zip cpython-4d4daed7cd9f82ae32ad8ffbbf3942abf1049b61.tar.gz cpython-4d4daed7cd9f82ae32ad8ffbbf3942abf1049b61.tar.bz2 |
Fix incomplete merge of Ping's SyntaxError enhancement patch (my fault).
Comment change only.
-rw-r--r-- | Include/errcode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/errcode.h b/Include/errcode.h index 0683317..a8fe458 100644 --- a/Include/errcode.h +++ b/Include/errcode.h @@ -30,7 +30,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #define E_NOMEM 15 /* Ran out of memory */ #define E_DONE 16 /* Parsing complete */ #define E_ERROR 17 /* Execution error */ -#define E_TABSPACE 18 /* Invalid indentation detected */ +#define E_TABSPACE 18 /* Inconsistent mixing of tabs and spaces */ #define E_OVERFLOW 19 /* Node had too many children */ #define E_TOODEEP 20 /* Too many indentation levels */ #define E_DEDENT 21 /* No matching outer block for dedent */ |