Searched refs:TracebackType (Results 1 – 16 of 16) sorted by relevance
/external/python/cpython3/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")
|
/external/libchrome/third_party/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)):
|
/external/python/cpython2/Lib/ |
D | types.py | 70 TracebackType = type(tb) variable
|
D | inspect.py | 188 return isinstance(object, types.TracebackType)
|
/external/python/cpython3/Lib/ |
D | types.py | 50 TracebackType = type(tb) variable
|
D | inspect.py | 236 return isinstance(object, types.TracebackType)
|
/external/python/cpython2/Lib/idlelib/ |
D | RemoteDebugger.py | 51 assert isinstance(traceback, types.TracebackType)
|
/external/python/cpython3/Lib/idlelib/ |
D | debugger_r.py | 51 assert isinstance(traceback, types.TracebackType)
|
/external/python/cpython2/Doc/library/ |
D | types.rst | 203 .. data:: TracebackType
|
/external/python/cpython3/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.
|
/external/python/cpython3/Doc/library/ |
D | types.rst | 218 .. class:: TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.7.rst | 521 :class:`types.TracebackType` can now be instantiated from Python code, and
|
/external/python/cpython3/Doc/reference/ |
D | datamodel.rst | 1023 created by calling :class:`types.TracebackType`.
|
/external/python/cpython2/Misc/ |
D | HISTORY | 13129 FileType (not always accessible), and TracebackType and FrameType
|
/external/python/cpython3/Misc/ |
D | HISTORY | 30508 FileType (not always accessible), and TracebackType and FrameType
|