Searched refs:check_warnings (Results 1 – 25 of 51) sorted by relevance
123
/third_party/python/Lib/test/ |
D | test_structmembers.py | 120 with warnings_helper.check_warnings(('', RuntimeWarning)): 124 with warnings_helper.check_warnings(('', RuntimeWarning)): 128 with warnings_helper.check_warnings(('', RuntimeWarning)): 132 with warnings_helper.check_warnings(('', RuntimeWarning)): 136 with warnings_helper.check_warnings(('', RuntimeWarning)): 140 with warnings_helper.check_warnings(('', RuntimeWarning)):
|
D | test_smtpd.py | 722 with warnings_helper.check_warnings(('', DeprecationWarning)): 724 with warnings_helper.check_warnings(('', DeprecationWarning)): 726 with warnings_helper.check_warnings(('', DeprecationWarning)): 728 with warnings_helper.check_warnings(('', DeprecationWarning)): 730 with warnings_helper.check_warnings(('', DeprecationWarning)): 732 with warnings_helper.check_warnings(('', DeprecationWarning)): 734 with warnings_helper.check_warnings(('', DeprecationWarning)): 736 with warnings_helper.check_warnings(('', DeprecationWarning)): 738 with warnings_helper.check_warnings(('', DeprecationWarning)): 740 with warnings_helper.check_warnings(('', DeprecationWarning)): [all …]
|
D | test_lib2to3.py | 3 from test.support.warnings_helper import check_warnings 5 with check_warnings(("", PendingDeprecationWarning)):
|
D | test_global.py | 4 from test.support.warnings_helper import check_warnings 12 self._warnings_manager = check_warnings()
|
D | test_pkgutil.py | 2 from test.support.warnings_helper import check_warnings 499 return check_warnings( 513 with check_warnings() as w: 525 with check_warnings() as w: 564 with check_warnings() as w: 572 with check_warnings() as w: 577 with check_warnings() as w:
|
D | test___all__.py | 19 with warnings_helper.check_warnings( 35 with warnings_helper.check_warnings(
|
D | test_distutils.py | 12 with warnings_helper.check_warnings(
|
D | test_sundry.py | 13 with warnings_helper.check_warnings(quiet=True):
|
D | test_binhex.py | 13 with warnings_helper.check_warnings(('', DeprecationWarning)):
|
D | test_locale.py | 3 from test.support.warnings_helper import check_warnings 149 with check_warnings(('', DeprecationWarning)): 238 with check_warnings(('', DeprecationWarning)):
|
D | test_fileio.py | 14 from test.support.warnings_helper import check_warnings 552 with check_warnings(quiet=True) as w: 601 with check_warnings(quiet=True) as w:
|
D | test_support.py | 186 with warnings_helper.check_warnings() as recorder: 259 with warnings_helper.check_warnings() as recorder: 277 with warnings_helper.check_warnings() as recorder:
|
D | test_sysconfig.py | 12 from test.support.warnings_helper import check_warnings 403 with check_warnings(('', DeprecationWarning)):
|
D | test_codeop.py | 312 with warnings_helper.check_warnings(
|
D | test_urllib2_localnet.py | 570 with warnings_helper.check_warnings(('', DeprecationWarning)): 588 with warnings_helper.check_warnings(('', DeprecationWarning)):
|
D | test_genericpath.py | 497 with warnings_helper.check_warnings(('', BytesWarning), quiet=True): 517 with warnings_helper.check_warnings(
|
D | test_ssl.py | 386 with warnings_helper.check_warnings(): 398 with warnings_helper.check_warnings(): 559 with warnings_helper.check_warnings(("", ResourceWarning)): 1142 with warnings_helper.check_warnings(): 1145 with warnings_helper.check_warnings(): 1188 with warnings_helper.check_warnings(): 1191 with warnings_helper.check_warnings(): 1199 with warnings_helper.check_warnings(): 1718 with warnings_helper.check_warnings(): 1724 with warnings_helper.check_warnings(): [all …]
|
/third_party/python/Lib/distutils/tests/ |
D | test_bdist_msi.py | 5 from test.support.warnings_helper import check_warnings 18 with check_warnings(("", DeprecationWarning)):
|
D | test_extension.py | 7 from test.support.warnings_helper import check_warnings 58 with check_warnings() as w:
|
D | test_archive_util.py | 18 from test.support.warnings_helper import check_warnings 214 with check_warnings() as w: 228 with check_warnings() as w:
|
D | test_sysconfig.py | 15 from test.support.warnings_helper import check_warnings 239 with check_warnings(('', DeprecationWarning)):
|
D | test_register.py | 9 from test.support.warnings_helper import check_warnings 293 with check_warnings() as w:
|
D | test_sdist.py | 10 from test.support.warnings_helper import check_warnings 274 with check_warnings() as w:
|
/third_party/python/Lib/test/support/ |
D | warnings_helper.py | 78 def check_warnings(*filters, **kwargs): function
|
/third_party/python/Lib/test/test_warnings/ |
D | __init__.py | 1102 with warnings_helper.check_warnings(quiet=False) as w: 1114 with warnings_helper.check_warnings(): 1117 with warnings_helper.check_warnings(('foo', UserWarning)): 1121 with warnings_helper.check_warnings(('', RuntimeWarning)): 1125 with warnings_helper.check_warnings(('foo', RuntimeWarning)):
|
123