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

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
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.
75 """A shorthand for 'format_list(extract_stack(f, limit))."""
269 print_list(extract_stack(f, limit), file)
272 """Shorthand for 'format_list(extract_stack(f, limit))'."""
278 return format_list(extract_stack(f, limit))
280 def extract_stack(f=None, limit = None): function
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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.
75 """A shorthand for 'format_list(extract_stack(f, limit))."""
269 print_list(extract_stack(f, limit), file)
272 """Shorthand for 'format_list(extract_stack(f, limit))'."""
278 return format_list(extract_stack(f, limit))
280 def extract_stack(f=None, limit = None): function
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/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 873 milliseconds