Searched refs:extract_tb (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Doc/library/ |
D | traceback.rst | 102 .. function:: extract_tb(tb, limit=None) 119 the same format as for :func:`extract_tb`. The optional *f* and *limit* 126 :func:`extract_tb` or :func:`extract_stack`, return a list of strings ready 176 A shorthand for ``format_list(extract_tb(tb, limit))``. 429 print("*** extract_tb:") 430 print(repr(traceback.extract_tb(exc_traceback))) 466 *** extract_tb:
|
/third_party/python/Lib/ |
D | traceback.py | 53 print_list(extract_tb(tb, limit=limit), file=file) 57 return extract_tb(tb, limit=limit).format() 59 def extract_tb(tb, limit=None): function
|
/third_party/python/Lib/idlelib/ |
D | run.py | 259 tbe = traceback.extract_tb(tb)
|
/third_party/python/Lib/test/ |
D | test_zipimport.py | 23 from traceback import extract_tb, extract_stack, print_tb 715 f,lno,n,line = extract_tb(tb, 1)[0]
|
D | test_pyexpat.py | 461 entries = traceback.extract_tb(e.__traceback__)
|
D | test_traceback.py | 931 return traceback.extract_tb(tb, **kwargs)
|