Searched refs:TracebackType (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Lib/test/ |
D | test_raise.py | 216 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/ |
D | debug.py | 15 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))):
|
D | sandbox.py | 193 elif isinstance(obj, (types.CodeType, types.TracebackType, types.FrameType)):
|
/third_party/python/Lib/ |
D | types.py | 57 TracebackType = type(tb) variable
|
D | inspect.py | 363 return isinstance(object, types.TracebackType)
|
/third_party/jinja2/ |
D | sandbox.py | 215 elif isinstance(obj, (types.CodeType, types.TracebackType, types.FrameType)):
|
/third_party/skia/third_party/externals/jinja2/ |
D | sandbox.py | 215 elif isinstance(obj, (types.CodeType, types.TracebackType, types.FrameType)):
|
/third_party/python/Lib/idlelib/ |
D | debugger_r.py | 51 assert isinstance(traceback, types.TracebackType)
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0a4.rst | 112 Implement TracebackType.__new__ to allow Python-level creation of traceback 113 objects, and make TracebackType.tb_next mutable.
|
/third_party/python/Doc/library/ |
D | types.rst | 321 .. class:: TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)
|
/third_party/python/Doc/whatsnew/ |
D | 3.7.rst | 527 :class:`types.TracebackType` can now be instantiated from Python code, and
|
/third_party/python/Doc/reference/ |
D | datamodel.rst | 1094 created by calling :class:`types.TracebackType`.
|
/third_party/python/Misc/ |
D | HISTORY | 30508 FileType (not always accessible), and TracebackType and FrameType
|