From 5c29424f4bae94e32ec7332551f3ccabf2f957dd Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Sat, 7 Dec 2013 19:37:31 -0700 Subject: Issue #19758: silence PendingDeprecationWarnings in test_importlib. --- Lib/test/test_importlib/test_spec.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Lib/test/test_importlib/test_spec.py b/Lib/test/test_importlib/test_spec.py index e4ef39f..9e73df8 100644 --- a/Lib/test/test_importlib/test_spec.py +++ b/Lib/test/test_importlib/test_spec.py @@ -10,6 +10,7 @@ import os.path from test.support import CleanImport import unittest import sys +import warnings @@ -55,10 +56,13 @@ class LegacyLoader(TestLoader): HAM = -1 - @frozen_util.module_for_loader - def load_module(self, module): - module.ham = self.HAM - return module + with warnings.catch_warnings(): + warnings.simplefilter("ignore", PendingDeprecationWarning) + + @frozen_util.module_for_loader + def load_module(self, module): + module.ham = self.HAM + return module class ModuleSpecTests: -- cgit v0.12