Home
last modified time | relevance | path

Searched refs:extract_stack (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Lib/
Dtraceback.py206 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/
Dformat_helpers.py62 def extract_stack(f=None, limit=None): function
Dcoroutines.py43 self._source_traceback = format_helpers.extract_stack(sys._getframe(1))
Dfutures.py84 self._source_traceback = format_helpers.extract_stack(
Devents.py41 self._source_traceback = format_helpers.extract_stack(
Dstreams.py398 self._source_traceback = format_helpers.extract_stack(
/third_party/python/Doc/library/
Dtraceback.rst116 .. 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__.py31 f = traceback.extract_stack(limit=2)
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
D__init__.py32 f = traceback.extract_stack(limit=2)
/third_party/python/Lib/test/
Dtest_zipimport.py23 from traceback import extract_tb, extract_stack, print_tb
718 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
Dtest_traceback.py900 return traceback.extract_stack(frame, **kwargs)
1013 return traceback.extract_stack()
Dtest_sys.py385 stack = traceback.extract_stack(frame)
452 stack = traceback.extract_stack(exc_tb.tb_frame)
/third_party/python/Misc/NEWS.d/
D3.5.1rc1.rst675 format_stack(), and extract_stack() called without arguments.