From 213bcb8de1e8dc8ae2668bf56b1be420ff947f1e Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Tue, 3 Aug 2010 10:44:09 +0000 Subject: [PATCH] Fix buildbot failure in test_os.py --- Lib/test/test_dl.py | 3 +++ Lib/test/test_os.py | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_dl.py b/Lib/test/test_dl.py index c04bc1b530..5c8188e93a 100755 --- a/Lib/test/test_dl.py +++ b/Lib/test/test_dl.py @@ -3,7 +3,10 @@ Roger E. Masse revised strategy by Barry Warsaw """ from test.test_support import verbose,TestSkipped, import_module +import warnings +warnings.simplefilter('always') dl = import_module('dl', deprecated=True) +warnings.resetwarnings() sharedlibs = [ ('/usr/lib/libc.so', 'getpid'), diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index e54ab4b772..db7e9b4105 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -500,8 +500,7 @@ class DevNullTests (unittest.TestCase): class URandomTests (unittest.TestCase): def test_urandom(self): try: - with test_support._check_py3k_warnings( - ('integer argument expected, got float', DeprecationWarning)): + with test_support.check_warnings(): self.assertEqual(len(os.urandom(1)), 1) self.assertEqual(len(os.urandom(10)), 10) self.assertEqual(len(os.urandom(100)), 100) -- 2.40.0