mirror of https://github.com/python/cpython
[3.11] GH-93481: Suppress expected deprecation warning in test_pyclbr (GH-93483) (GH-93601)
(cherry picked from commit f8eae6f5c3
)
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
This commit is contained in:
parent
68aae80159
commit
ce07de9059
|
@ -9,6 +9,7 @@ from types import FunctionType, MethodType, BuiltinFunctionType
|
||||||
import pyclbr
|
import pyclbr
|
||||||
from unittest import TestCase, main as unittest_main
|
from unittest import TestCase, main as unittest_main
|
||||||
from test.test_importlib import util as test_importlib_util
|
from test.test_importlib import util as test_importlib_util
|
||||||
|
import warnings
|
||||||
|
|
||||||
|
|
||||||
StaticMethodType = type(staticmethod(lambda: None))
|
StaticMethodType = type(staticmethod(lambda: None))
|
||||||
|
@ -218,9 +219,13 @@ class PyclbrTest(TestCase):
|
||||||
|
|
||||||
# These were once some of the longest modules.
|
# These were once some of the longest modules.
|
||||||
cm('random', ignore=('Random',)) # from _random import Random as CoreGenerator
|
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('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(
|
cm(
|
||||||
'pdb',
|
'pdb',
|
||||||
# pyclbr does not handle elegantly `typing` or properties
|
# pyclbr does not handle elegantly `typing` or properties
|
||||||
|
|
Loading…
Reference in New Issue