Home
last modified time | relevance | path

Searched refs:reraise (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Lib/test/
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)
[all …]
/third_party/python/Lib/test/support/
Dwarnings_helper.py162 reraise = list(w)
166 for w in reraise[:]:
172 reraise.remove(w)
176 if reraise:
177 raise AssertionError("unhandled warning %s" % reraise[0])
/third_party/node/tools/inspector_protocol/jinja2/
Ddebug.py18 from jinja2._compat import iteritems, reraise, PY2
193 reraise(exc_info[0], exc_info[1], exc_info[2])
D_compat.py35 def reraise(tp, value, tb=None): function
Denvironment.py32 text_type, reraise, implements_iterator, implements_to_string, \
780 reraise(exc_type, exc_value, tb)
/third_party/jinja2/
D_compat.py26 def reraise(tp, value, tb=None): function
/third_party/skia/third_party/externals/jinja2/
D_compat.py26 def reraise(tp, value, tb=None): function
Denvironment.py20 from ._compat import reraise
832 reraise(*rewrite_traceback_stack(source=source))
/third_party/protobuf/python/google/protobuf/internal/
Dpython_message.py488 six.reraise(type(exc), exc, sys.exc_info()[2])
/third_party/python/Misc/NEWS.d/
D3.6.0b1.rst403 thread, raise a RuntimeError since there is no active exception to reraise.
D3.5.3rc1.rst341 thread, raise a RuntimeError since there is no active exception to reraise.
/third_party/python/Doc/library/
Dcontextlib.rst84 suppress it entirely), the generator must reraise that exception. Otherwise the
/third_party/python/Doc/reference/
Ddatamodel.rst2735 Note that :meth:`__exit__` methods should not reraise the passed-in exception;