From: Guido van Rossum Date: Fri, 10 Apr 1998 19:43:42 +0000 (+0000) Subject: Translate E_INDENT to the clearest error message I can think of. X-Git-Tag: v1.5.1~87 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=560e8adef71dd10898e0f8a0a9a20599e6bec857;p=python Translate E_INDENT to the clearest error message I can think of. --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 87b691aed1..16aba5c3bc 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -997,6 +997,9 @@ err_input(err) case E_EOF: msg = "unexpected EOF while parsing"; break; + case E_INDENT: + msg = "inconsistent use of tabs and spaces in indentation"; + break; default: fprintf(stderr, "error=%d\n", err->error); msg = "unknown parsing error";