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

Suppress warnings about test_grammar.py that can't be suppressed inside

that file itself (because it's the parser that reports them).
üst 715eca93
......@@ -63,6 +63,12 @@ import getopt
import traceback
import random
import StringIO
import warnings
# I see no other way to suppress these warnings;
# putting them in test_grammar.py has no effect:
warnings.filterwarnings("ignore", "hex/oct constants", DeprecationWarning,
".*test.test_grammar$")
from test import test_support
......
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