/third_party/python/Lib/test/ |
H A D | test_raise.py | 48 def reraise(): function 57 self.assertRaises(TypeError, reraise) 60 def reraise(): function 68 self.assertRaises(KeyError, reraise) 73 def reraise(): function 78 self.assertRaises(TypeError, reraise) 91 def reraise(): function 98 self.assertRaises(TypeError, reraise) 101 def reraise(): function 108 self.assertRaises(TypeError, reraise) 111 def reraise(): global() function [all...] |
/third_party/python/Lib/test/support/ |
H A D | warnings_helper.py | 170 reraise = list(w) 174 for w in reraise[:]: 180 reraise.remove(w) 184 if reraise: 185 raise AssertionError("unhandled warning %s" % reraise[0])
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | _compat.py | 35 def reraise(tp, value, tb=None): function 64 exec('def reraise(tp, value, tb=None):\n raise tp, value, tb')
|
H A D | debug.py | 18 from jinja2._compat import iteritems, reraise, PY2 namespace 190 # reraise it unchanged. 193 reraise(exc_info[0], exc_info[1], exc_info[2])
|
H A D | environment.py | 32 text_type, reraise, implements_iterator, implements_to_string, \ 780 reraise(exc_type, exc_value, tb) 33 encode_filename, PY2, PYPY global() namespace
|
/third_party/jinja2/ |
H A D | _compat.py | 26 def reraise(tp, value, tb=None): function 59 exec("def reraise(tp, value, tb=None):\n raise tp, value, tb")
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | _compat.py | 26 def reraise(tp, value, tb=None): function 59 exec("def reraise(tp, value, tb=None):\n raise tp, value, tb")
|
H A D | environment.py | 20 from ._compat import reraise namespace 832 reraise(*rewrite_traceback_stack(source=source))
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | _compat.py | 26 def reraise(tp, value, tb=None): function 59 exec("def reraise(tp, value, tb=None):\n raise tp, value, tb")
|
H A D | environment.py | 20 from ._compat import reraise namespace 832 reraise(*rewrite_traceback_stack(source=source))
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | python_message.py | 488 six.reraise(type(exc), exc, sys.exc_info()[2])
|
/third_party/python/Python/ |
H A D | compile.c | 3732 /* create empty list for exceptions raised/reraise in the except* blocks */ in compiler_try_star_except() 3827 basicblock *reraise = compiler_new_block(c); in compiler_try_star_except() local 3828 if (!reraise) { in compiler_try_star_except() 3835 ADDOP_JUMP(c, POP_JUMP_IF_NOT_NONE, reraise); in compiler_try_star_except() 3837 /* Nothing to reraise */ in compiler_try_star_except() 3842 compiler_use_next_block(c, reraise); in compiler_try_star_except()
|