Home
last modified time | relevance | path

Searched refs:from_traceback (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/
Ddis.py499 def from_traceback(cls, tb): member in Bytecode
/third_party/python/Lib/test/
Dtest_dis.py1239 b = dis.Bytecode.from_traceback(tb)
1246 b = dis.Bytecode.from_traceback(tb)
/third_party/python/Doc/library/
Ddis.rst73 .. classmethod:: from_traceback(tb)
/third_party/python/Doc/whatsnew/
D3.4.rst763 :meth:`~dis.Bytecode.from_traceback`, that provides the ability to manipulate a
764 traceback (that is, ``print(Bytecode.from_traceback(tb).dis())`` is equivalent
/third_party/python/Misc/
DHISTORY3325 - Issue #17916: Added dis.Bytecode.from_traceback() and