Searched refs:check_py3k_warnings (Results 1 – 25 of 68) sorted by relevance
123
/external/python/cpython2/Lib/test/ |
D | test_py3kwarn.py | 3 from test.test_support import check_py3k_warnings, CleanImport, run_unittest 45 with check_py3k_warnings((expected, SyntaxWarning)): 51 with check_py3k_warnings((expected, SyntaxWarning)): 68 with check_py3k_warnings(('', SyntaxWarning)) as w: 92 with check_py3k_warnings() as w: 99 with check_py3k_warnings() as w: 106 with check_py3k_warnings() as w: 123 with check_py3k_warnings() as w: 134 with check_py3k_warnings() as w: 148 with check_py3k_warnings() as w: [all …]
|
D | test_grammar.py | 5 check_py3k_warnings 170 with check_py3k_warnings(('tuple parameter unpacking has been removed', 192 with check_py3k_warnings(('tuple parameter unpacking has been removed', 301 with check_py3k_warnings(('parenthesized argument names are invalid', 304 with check_py3k_warnings(('tuple parameter unpacking has been removed', 342 with check_py3k_warnings(('tuple parameter unpacking has been removed', 629 with check_py3k_warnings((warntext, DeprecationWarning)): 652 with check_py3k_warnings(("'yield' inside list comprehension", 657 with check_py3k_warnings(("'yield' inside list comprehension", 880 with check_py3k_warnings(('<> not supported in 3.x; use !=', [all …]
|
D | test_call.py | 15 with test_support.check_py3k_warnings(): 28 with test_support.check_py3k_warnings(): 33 with test_support.check_py3k_warnings():
|
D | test_getargs2.py | 530 with test_support.check_py3k_warnings(): 543 with test_support.check_py3k_warnings(): 557 with test_support.check_py3k_warnings(): 575 with test_support.check_py3k_warnings(): 591 with test_support.check_py3k_warnings(): 603 with test_support.check_py3k_warnings(): 617 with test_support.check_py3k_warnings(): 631 with test_support.check_py3k_warnings(): 644 with test_support.check_py3k_warnings(): 656 with test_support.check_py3k_warnings(): [all …]
|
D | test_undocumented_details.py | 1 from test.test_support import run_unittest, check_py3k_warnings 35 with check_py3k_warnings():
|
D | test_buffer.py | 53 with test_support.check_py3k_warnings( 59 with test_support.check_py3k_warnings(("buffer.. not supported",
|
D | test_opcodes.py | 3 from test.test_support import run_unittest, check_py3k_warnings 113 with check_py3k_warnings(("exceptions must derive from BaseException",
|
D | test_re.py | 6 check_warnings, check_py3k_warnings) 74 with check_py3k_warnings(): 248 with check_py3k_warnings(('', FutureWarning)): 257 with check_py3k_warnings(): 267 with check_py3k_warnings(('', FutureWarning)): 444 with check_py3k_warnings(('', warn)): 449 with check_py3k_warnings(('', warn)): 982 with check_py3k_warnings(): 984 with check_py3k_warnings(): 986 with check_py3k_warnings(): [all …]
|
D | test_complex_args.py | 112 with test_support.check_py3k_warnings(
|
D | test_augassign.py | 3 from test.test_support import run_unittest, check_py3k_warnings 327 with check_py3k_warnings(("classic int division", DeprecationWarning)):
|
D | test_inspect.py | 12 from test.support import run_unittest, check_py3k_warnings, have_unicode 14 with check_py3k_warnings( 516 with check_py3k_warnings(("tuple parameter unpacking has been removed", 537 with check_py3k_warnings( 717 with check_py3k_warnings( 860 with check_py3k_warnings(
|
D | test_index.py | 290 with test_support.check_py3k_warnings(): 297 with test_support.check_py3k_warnings(): 318 with test_support.check_py3k_warnings():
|
D | test_userlist.py | 56 with test_support.check_py3k_warnings(
|
D | test_syntax.py | 658 with support.check_py3k_warnings(('backquote not supported',
|
D | test_scope.py | 2 from test.test_support import check_syntax_error, check_py3k_warnings, \ 322 with check_py3k_warnings(("tuple parameter unpacking has been removed",
|
D | test_int.py | 354 with test_support.check_py3k_warnings(quiet=True): 370 test_support.check_py3k_warnings(quiet=True): 374 with test_support.check_py3k_warnings():
|
D | test_repr.py | 11 from test.test_support import run_unittest, check_py3k_warnings 177 with check_py3k_warnings():
|
D | test_hmac.py | 392 with test_support.check_py3k_warnings(): 405 with test_support.check_py3k_warnings():
|
D | test_univnewlines2k.py | 83 with test_support.check_py3k_warnings():
|
D | string_tests.py | 767 with test_support.check_py3k_warnings(): 1352 with test_support.check_py3k_warnings(): 1354 with test_support.check_py3k_warnings(): 1363 with test_support.check_py3k_warnings(): 1365 with test_support.check_py3k_warnings():
|
D | test_urllibnet.py | 218 with test_support.check_py3k_warnings(
|
D | test_slice.py | 121 with test_support.check_py3k_warnings():
|
D | test_file2k.py | 44 with test_support.check_py3k_warnings(): 50 with test_support.check_py3k_warnings(): 139 with test_support.check_py3k_warnings():
|
/external/python/cpython2/Lib/sqlite3/test/ |
D | userfunctions.py | 40 with test_support.check_py3k_warnings(): 207 with test_support.check_py3k_warnings(): 252 with test_support.check_py3k_warnings(): 276 with test_support.check_py3k_warnings(): 370 with test_support.check_py3k_warnings():
|
D | types.py | 71 with test_support.check_py3k_warnings(): 236 with test_support.check_py3k_warnings(): 353 with test_support.check_py3k_warnings():
|
123