diff options
author | Guido van Rossum <guido@python.org> | 1998-12-04 18:51:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-12-04 18:51:01 (GMT) |
commit | d5516bc45fdd55b920838806e59a3089ac17ca93 (patch) | |
tree | e5250c74f8e75fd5daa68a0d03813379f1f5fb76 /Parser | |
parent | f261526423db10822012be10bf9fdcaa3f135145 (diff) | |
download | cpython-d5516bc45fdd55b920838806e59a3089ac17ca93.zip cpython-d5516bc45fdd55b920838806e59a3089ac17ca93.tar.gz cpython-d5516bc45fdd55b920838806e59a3089ac17ca93.tar.bz2 |
One more fprintf bites the dist -- use PySys_WriteStderr
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/tokenizer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index 63d1b05..08b6ee9 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; |