Searched refs:extract_stack (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Lib/ |
D | traceback.py | 206 print_list(extract_stack(f, limit=limit), file=file) 213 return format_list(extract_stack(f, limit=limit)) 216 def extract_stack(f=None, limit=None): function
|
/third_party/python/Lib/asyncio/ |
D | format_helpers.py | 62 def extract_stack(f=None, limit=None): function
|
D | coroutines.py | 43 self._source_traceback = format_helpers.extract_stack(sys._getframe(1))
|
D | futures.py | 84 self._source_traceback = format_helpers.extract_stack(
|
D | events.py | 41 self._source_traceback = format_helpers.extract_stack(
|
D | streams.py | 398 self._source_traceback = format_helpers.extract_stack(
|
/third_party/python/Doc/library/ |
D | traceback.rst | 116 .. function:: extract_stack(f=None, limit=None) 126 :func:`extract_tb` or :func:`extract_stack`, return a list of strings ready 181 A shorthand for ``format_list(extract_stack(f, limit))``. 485 ... print(repr(traceback.extract_stack())) 497 ('<doctest>', 7, 'lumberstack', 'print(repr(traceback.extract_stack()))')]
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | __init__.py | 31 f = traceback.extract_stack(limit=2)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | __init__.py | 32 f = traceback.extract_stack(limit=2)
|
/third_party/python/Lib/test/ |
D | test_zipimport.py | 23 from traceback import extract_tb, extract_stack, print_tb 718 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
|
D | test_traceback.py | 900 return traceback.extract_stack(frame, **kwargs) 1013 return traceback.extract_stack()
|
D | test_sys.py | 385 stack = traceback.extract_stack(frame) 452 stack = traceback.extract_stack(exc_tb.tb_frame)
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.1rc1.rst | 675 format_stack(), and extract_stack() called without arguments.
|