mirror of https://github.com/python/cpython
Issue #19758: silence PendingDeprecationWarnings in test_importlib.
This commit is contained in:
parent
c0e71cd6e2
commit
5c29424f4b
|
@ -10,6 +10,7 @@ import os.path
|
||||||
from test.support import CleanImport
|
from test.support import CleanImport
|
||||||
import unittest
|
import unittest
|
||||||
import sys
|
import sys
|
||||||
|
import warnings
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -55,10 +56,13 @@ class LegacyLoader(TestLoader):
|
||||||
|
|
||||||
HAM = -1
|
HAM = -1
|
||||||
|
|
||||||
@frozen_util.module_for_loader
|
with warnings.catch_warnings():
|
||||||
def load_module(self, module):
|
warnings.simplefilter("ignore", PendingDeprecationWarning)
|
||||||
module.ham = self.HAM
|
|
||||||
return module
|
@frozen_util.module_for_loader
|
||||||
|
def load_module(self, module):
|
||||||
|
module.ham = self.HAM
|
||||||
|
return module
|
||||||
|
|
||||||
|
|
||||||
class ModuleSpecTests:
|
class ModuleSpecTests:
|
||||||
|
|
Loading…
Reference in New Issue