Searched defs:extract_stack (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Lib/
H A Dtraceback.py7 __all__ = ['extract_stack', 'extract_tb', 'format_exception',
18 extract_stack() as a formatted stack trace to the given file."""
31 extract_stack(), return a list of strings ready for printing.
270 print_list(extract_stack(f, limit), file)
273 """Shorthand for 'format_list(extract_stack(f, limit))'."""
279 return format_list(extract_stack(f, limit))
281 def extract_stack(f=None, limit = None): function
/external/python/cpython2/Lib/test/
H A Dtest_zipimport.py25 from traceback import extract_tb, extract_stack, print_tb namespace
371 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]

Completed in 3011 milliseconds