Kaydet (Commit) 6c981ad2 authored tarafından Guido van Rossum's avatar Guido van Rossum

Only write message about changed Tab size with -v.

üst 38e5d27c
...@@ -589,7 +589,8 @@ PyTokenizer_Get(tok, p_start, p_end) ...@@ -589,7 +589,8 @@ PyTokenizer_Get(tok, p_start, p_end)
if (newsize >= 1 && newsize <= 40) { if (newsize >= 1 && newsize <= 40) {
tok->tabsize = newsize; tok->tabsize = newsize;
PySys_WriteStderr( if (Py_VerboseFlag)
PySys_WriteStderr(
"Tab size set to %d\n", "Tab size set to %d\n",
newsize); newsize);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment