Issue #23883: Add missing entries to traceback.__all__.

This commit is contained in:
Berker Peksag 2015-04-08 09:47:14 +03:00
parent cb6fdf2c63
commit 716b3d3e91
2 changed files with 19 additions and 9 deletions

View file

@ -7,8 +7,9 @@ import operator
__all__ = ['extract_stack', 'extract_tb', 'format_exception',
'format_exception_only', 'format_list', 'format_stack',
'format_tb', 'print_exc', 'format_exc', 'print_exception',
'print_last', 'print_stack', 'print_tb',
'clear_frames']
'print_last', 'print_stack', 'print_tb', 'clear_frames',
'FrameSummary', 'StackSummary', 'TracebackException',
'walk_stack', 'walk_tb']
#
# Formatting and printing lists of traceback lines.