Home
last modified time | relevance | path

Searched refs:reraise (Results 1 - 12 of 12) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_raise.py48 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 Dwarnings_helper.py170 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.py35 def reraise(tp, value, tb=None): function
64 exec('def reraise(tp, value, tb=None):\n raise tp, value, tb')
H A Ddebug.py18 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 Denvironment.py32 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.py26 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.py26 def reraise(tp, value, tb=None): function
59 exec("def reraise(tp, value, tb=None):\n raise tp, value, tb")
H A Denvironment.py20 from ._compat import reraise namespace
832 reraise(*rewrite_traceback_stack(source=source))
/third_party/skia/third_party/externals/jinja2/
H A D_compat.py26 def reraise(tp, value, tb=None): function
59 exec("def reraise(tp, value, tb=None):\n raise tp, value, tb")
H A Denvironment.py20 from ._compat import reraise namespace
832 reraise(*rewrite_traceback_stack(source=source))
/third_party/protobuf/python/google/protobuf/internal/
H A Dpython_message.py488 six.reraise(type(exc), exc, sys.exc_info()[2])
/third_party/python/Python/
H A Dcompile.c3732 /* 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()

Completed in 21 milliseconds