Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_raise.py216 self.assertIsInstance(e.__traceback__, types.TracebackType)
242 self.assertIsInstance(tb.tb_next, types.TracebackType)
275 tb = types.TracebackType(other_tb, frame, 1, 2)
281 tb = types.TracebackType(None, frame, 1, 2)
285 types.TracebackType("no", frame, 1, 2)
288 types.TracebackType(other_tb, "no", 1, 2)
291 types.TracebackType(other_tb, frame, "no", 2)
294 types.TracebackType(other_tb, frame, 1, "nuh-uh")
/third_party/node/tools/inspector_protocol/jinja2/
Ddebug.py15 from types import TracebackType, CodeType
77 return tproxy(TracebackType, operation_handler)
127 if type(tb) is not TracebackType:
305 from types import TracebackType
347 if not (isinstance(tb, TracebackType) and
348 (next is None or isinstance(next, TracebackType))):
Dsandbox.py193 elif isinstance(obj, (types.CodeType, types.TracebackType, types.FrameType)):
/third_party/python/Lib/
Dtypes.py57 TracebackType = type(tb) variable
Dinspect.py363 return isinstance(object, types.TracebackType)
/third_party/jinja2/
Dsandbox.py215 elif isinstance(obj, (types.CodeType, types.TracebackType, types.FrameType)):
/third_party/skia/third_party/externals/jinja2/
Dsandbox.py215 elif isinstance(obj, (types.CodeType, types.TracebackType, types.FrameType)):
/third_party/python/Lib/idlelib/
Ddebugger_r.py51 assert isinstance(traceback, types.TracebackType)
/third_party/python/Misc/NEWS.d/
D3.7.0a4.rst112 Implement TracebackType.__new__ to allow Python-level creation of traceback
113 objects, and make TracebackType.tb_next mutable.
/third_party/python/Doc/library/
Dtypes.rst321 .. class:: TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)
/third_party/python/Doc/whatsnew/
D3.7.rst527 :class:`types.TracebackType` can now be instantiated from Python code, and
/third_party/python/Doc/reference/
Ddatamodel.rst1094 created by calling :class:`types.TracebackType`.
/third_party/python/Misc/
DHISTORY30508 FileType (not always accessible), and TracebackType and FrameType