Home
last modified time | relevance | path

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

/external/python/cpython3/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")
/external/libchrome/third_party/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)):
/external/python/cpython2/Lib/
Dtypes.py70 TracebackType = type(tb) variable
Dinspect.py188 return isinstance(object, types.TracebackType)
/external/python/cpython3/Lib/
Dtypes.py50 TracebackType = type(tb) variable
Dinspect.py236 return isinstance(object, types.TracebackType)
/external/python/cpython2/Lib/idlelib/
DRemoteDebugger.py51 assert isinstance(traceback, types.TracebackType)
/external/python/cpython3/Lib/idlelib/
Ddebugger_r.py51 assert isinstance(traceback, types.TracebackType)
/external/python/cpython2/Doc/library/
Dtypes.rst203 .. data:: TracebackType
/external/python/cpython3/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.
/external/python/cpython3/Doc/library/
Dtypes.rst218 .. class:: TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)
/external/python/cpython3/Doc/whatsnew/
D3.7.rst521 :class:`types.TracebackType` can now be instantiated from Python code, and
/external/python/cpython3/Doc/reference/
Ddatamodel.rst1023 created by calling :class:`types.TracebackType`.
/external/python/cpython2/Misc/
DHISTORY13129 FileType (not always accessible), and TracebackType and FrameType
/external/python/cpython3/Misc/
DHISTORY30508 FileType (not always accessible), and TracebackType and FrameType