Commit 594bd17e authored by Guido van Rossum's avatar Guido van Rossum

Only write message about changed Tab size with -v.

parent f79f910e
......@@ -589,7 +589,8 @@ PyTokenizer_Get(tok, p_start, p_end)
if (newsize >= 1 && newsize <= 40) {
tok->tabsize = newsize;
PySys_WriteStderr(
if (Py_VerboseFlag)
PySys_WriteStderr(
"Tab size set to %d\n",
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