remove warnings supression

This commit is contained in:
Benjamin Peterson 2009-07-01 01:39:51 +00:00
parent 04e40c1b48
commit c8c0d78d09
1 changed files with 1 additions and 4 deletions

View File

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