/external/python/cpython3/Lib/test/test_warnings/ |
D | __init__.py | 101 self.module.filterwarnings("error", category=UserWarning) 120 self.module.filterwarnings("error", category=UserWarning) 127 self.module.filterwarnings("ignore", category=UserWarning) 140 self.module.filterwarnings("ignore", category=UserWarning) 149 self.module.filterwarnings("always", category=UserWarning) 172 self.module.filterwarnings("always", category=UserWarning) 184 self.module.filterwarnings("default", category=UserWarning) 200 self.module.filterwarnings("module", category=UserWarning) 212 self.module.filterwarnings("once", category=UserWarning) 249 self.module.filterwarnings("error", category=Warning) [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_warnings.py | 92 self.module.filterwarnings("error", category=UserWarning) 100 self.module.filterwarnings("ignore", category=UserWarning) 108 self.module.filterwarnings("always", category=UserWarning) 123 self.module.filterwarnings("default", category=UserWarning) 139 self.module.filterwarnings("module", category=UserWarning) 151 self.module.filterwarnings("once", category=UserWarning) 167 self.module.filterwarnings("error", category=Warning) 175 self.module.filterwarnings("ignore", category=UserWarning) 176 self.module.filterwarnings("error", category=UserWarning, 190 self.module.filterwarnings("error", "", Warning, "", 0) [all …]
|
D | test_pep247.py | 7 warnings.filterwarnings('ignore', 'the md5 module is deprecated.*', 9 warnings.filterwarnings('ignore', 'the sha module is deprecated.*',
|
D | test_userstring.py | 136 warnings.filterwarnings("ignore", ".*MutableString has been removed", 138 warnings.filterwarnings("ignore",
|
D | test_py3kwarn.py | 376 warnings.filterwarnings("error", ".+ (module|package) .+ removed", 378 warnings.filterwarnings("error", ".+ removed .+ (module|package)", 428 warnings.filterwarnings("error", "reduce") 437 warnings.filterwarnings("error", ".*MutableString",
|
D | test_popen2.py | 4 warnings.filterwarnings("ignore", ".*popen2 module is deprecated.*", 6 warnings.filterwarnings("ignore", "os\.popen. is deprecated.*",
|
D | test_global.py | 48 warnings.filterwarnings("error", module="<test string>")
|
D | test_os.py | 25 warnings.filterwarnings("ignore", "tempnam", RuntimeWarning, __name__) 26 warnings.filterwarnings("ignore", "tmpnam", RuntimeWarning, __name__) 91 warnings.filterwarnings("ignore", "tempnam", RuntimeWarning, 93 warnings.filterwarnings("ignore", "tempnam", DeprecationWarning) 120 warnings.filterwarnings("ignore", "tmpfile", DeprecationWarning) 156 warnings.filterwarnings("ignore", "tmpnam", RuntimeWarning, 158 warnings.filterwarnings("ignore", "tmpnam", DeprecationWarning)
|
D | test_sha.py | 8 warnings.filterwarnings("ignore", "the sha module is deprecated.*",
|
D | test_md5.py | 3 warnings.filterwarnings("ignore", "the md5 module is deprecated.*",
|
D | test_buffer.py | 44 warnings.filterwarnings('ignore', ".*buffer", DeprecationWarning)
|
D | test_posix.py | 24 warnings.filterwarnings('ignore', '.* potential security risk .*', 49 warnings.filterwarnings("ignore", "", DeprecationWarning) 428 warnings.filterwarnings("ignore", "tempnam", DeprecationWarning) 437 warnings.filterwarnings("ignore", "tmpfile", DeprecationWarning)
|
/external/python/cpython2/Lib/plat-mac/Carbon/ |
D | __init__.py | 3 warnings.filterwarnings("ignore", "", FutureWarning, ".*Controls") 4 warnings.filterwarnings("ignore", "", FutureWarning, ".*MacTextEditor")
|
/external/python/cpython3/Lib/test/ |
D | test_global.py | 13 warnings.filterwarnings("error", module="<test string>") 57 warnings.filterwarnings("error", module="<test string>")
|
D | test_platform.py | 270 warnings.filterwarnings( 388 warnings.filterwarnings(
|
/external/python/cpython2/Lib/ |
D | asynchat.py | 54 from warnings import filterwarnings, catch_warnings 230 filterwarnings("ignore", ".*buffer", DeprecationWarning)
|
D | mimetools.py | 7 from warnings import filterwarnings, catch_warnings 10 filterwarnings("ignore", ".*rfc822 has been removed", DeprecationWarning)
|
D | BaseHTTPServer.py | 76 from warnings import filterwarnings, catch_warnings 79 filterwarnings("ignore", ".*mimetools has been removed",
|
D | warnings.py | 67 def filterwarnings(action, message="", category=Warning, module="", lineno=0, function 157 filterwarnings(action, message, category, module, lineno)
|
D | cgi.py | 43 from warnings import filterwarnings, catch_warnings, warn 46 filterwarnings("ignore", ".*mimetools has been removed", 48 filterwarnings("ignore", ".*rfc822 has been removed",
|
/external/python/cpython3/Lib/ |
D | warnings.py | 130 def filterwarnings(action, message="", category=Warning, module="", lineno=0, function 237 filterwarnings(action, message, category, module, lineno) 558 filterwarnings("default", category=DeprecationWarning,
|
/external/fonttools/ |
D | setup.cfg | 52 filterwarnings =
|
/external/python/cpython3/Doc/library/ |
D | warnings.rst | 35 added to the filter by calling :func:`filterwarnings` and reset to its default 221 variable and calls to :func:`filterwarnings`. 282 warnings.filterwarnings("default", category=DeprecationWarning, 463 .. function:: filterwarnings(action, message='', category=Warning, module='', lineno=0, append=Fals… 479 :func:`filterwarnings`, but regular expressions are not needed as the filter 487 :func:`filterwarnings`, including that of the :option:`-W` command line options
|
/external/python/cpython2/Doc/library/ |
D | warnings.rst | 38 added to the filter by calling :func:`filterwarnings` and reset to its default 171 :func:`filterwarnings`. 368 .. function:: filterwarnings(action[, message[, category[, module[, lineno[, append]]]]]) 384 :func:`filterwarnings`, but regular expressions are not needed as the filter 392 :func:`filterwarnings`, including that of the :option:`-W` command line options
|
/external/ply/ply/test/ |
D | testyacc.py | 91 warnings.filterwarnings('ignore', category=ResourceWarning) 92 warnings.filterwarnings('ignore', category=DeprecationWarning)
|