diff options
author | R. David Murray <rdmurray@bitdance.com> | 2009-03-31 18:27:51 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2009-03-31 18:27:51 (GMT) |
commit | a6f2946cd5ac9593413c2546dd00ce0ee66f011e (patch) | |
tree | 21ebe12089f634cb3d59c50bab9e2067bb7ababd /Lib/test/test_sundry.py | |
parent | 9dbc6706b00674b418c385a9e04b127f6f365385 (diff) | |
download | cpython-a6f2946cd5ac9593413c2546dd00ce0ee66f011e.zip cpython-a6f2946cd5ac9593413c2546dd00ce0ee66f011e.tar.gz cpython-a6f2946cd5ac9593413c2546dd00ce0ee66f011e.tar.bz2 |
Merged revisions 70779 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70779 | r.david.murray | 2009-03-30 19:10:37 -0400 (Mon, 30 Mar 2009) | 3 lines
Actually suppress warnings in test_at_least_import_untested_modules
inside the catch_warnings context manager.
........
Diffstat (limited to 'Lib/test/test_sundry.py')
-rw-r--r-- | Lib/test/test_sundry.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py index 7a67517..bba54fe 100644 --- a/Lib/test/test_sundry.py +++ b/Lib/test/test_sundry.py @@ -8,6 +8,7 @@ import warnings class TestUntestedModules(unittest.TestCase): def test_at_least_import_untested_modules(self): with warnings.catch_warnings(): + warnings.simplefilter("ignore") import aifc import bdb import cgitb |