From: Irit Katriel <1055913+iritkatriel@users.noreply.github.com> Date: Tue, 7 Jun 2022 20:35:11 +0000 (+0100) Subject: GH-93481: Suppress expected deprecation warning in test_pyclbr (GH-93483) X-Git-Tag: v3.12.0a1~1328 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f8eae6f5c35e9def07a732f6bc7744aae106f9b2;p=thirdparty%2FPython%2Fcpython.git GH-93481: Suppress expected deprecation warning in test_pyclbr (GH-93483) --- diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index ad7b31aef1dd..b2de4e8397d6 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -9,6 +9,7 @@ from types import FunctionType, MethodType, BuiltinFunctionType import pyclbr from unittest import TestCase, main as unittest_main from test.test_importlib import util as test_importlib_util +import warnings StaticMethodType = type(staticmethod(lambda: None)) @@ -218,9 +219,13 @@ class PyclbrTest(TestCase): # These were once some of the longest modules. cm('random', ignore=('Random',)) # from _random import Random as CoreGenerator - cm('cgi', ignore=('log',)) # set with = in module + with warnings.catch_warnings(): + warnings.simplefilter('ignore', DeprecationWarning) + cm('cgi', ignore=('log',)) # set with = in module cm('pickle', ignore=('partial', 'PickleBuffer')) - cm('sre_parse', ignore=('dump', 'groups', 'pos')) # from sre_constants import *; property + with warnings.catch_warnings(): + warnings.simplefilter('ignore', DeprecationWarning) + cm('sre_parse', ignore=('dump', 'groups', 'pos')) # from sre_constants import *; property cm( 'pdb', # pyclbr does not handle elegantly `typing` or properties