Suppress deprecation warnings.

This commit is contained in:
Raymond Hettinger 2009-05-28 22:46:29 +00:00
parent fa3cf21795
commit c5b0195ea0

View file

@ -9,6 +9,7 @@ import unittest
import threading
from contextlib import * # Tests __all__
from test import support
import warnings
class ContextManagerTestCase(unittest.TestCase):
@ -331,7 +332,9 @@ class LockContextTestCase(unittest.TestCase):
# This is needed to make the test actually run under regrtest.py!
def test_main():
support.run_unittest(__name__)
with warnings.catch_warnings():
warnings.simplefilter('ignore')
support.run_unittest(__name__)
if __name__ == "__main__":
test_main()