From: Guido van Rossum Date: Fri, 4 Dec 1998 18:51:01 +0000 (+0000) Subject: One more fprintf bites the dist -- use PySys_WriteStderr X-Git-Tag: v1.5.2b1~123 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d5516bc45fdd55b920838806e59a3089ac17ca93;p=python One more fprintf bites the dist -- use PySys_WriteStderr --- diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index 63d1b05033..08b6ee9eec 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c @@ -526,7 +526,7 @@ PyTokenizer_Get(tok, p_start, p_end) tok->indent--; } if (col != tok->indstack[tok->indent]) { - fprintf(stderr, + PySys_WriteStderr( "inconsistent dedent\n"); tok->done = E_TOKEN; tok->cur = tok->inp;