diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-04-08 06:47:14 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-04-08 06:47:14 (GMT) |
commit | 716b3d3e9137aeeed4ee3480a5302c54442405b6 (patch) | |
tree | 394ac837de2e3af43b835877a2a05081e215471c /Lib/traceback.py | |
parent | cb6fdf2c63961e8b9111357ca57c3de27d029820 (diff) | |
download | cpython-716b3d3e9137aeeed4ee3480a5302c54442405b6.zip cpython-716b3d3e9137aeeed4ee3480a5302c54442405b6.tar.gz cpython-716b3d3e9137aeeed4ee3480a5302c54442405b6.tar.bz2 |
Issue #23883: Add missing entries to traceback.__all__.
Diffstat (limited to 'Lib/traceback.py')
-rw-r--r-- | Lib/traceback.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/traceback.py b/Lib/traceback.py index f7705cd..8a554cf 100644 --- a/Lib/traceback.py +++ b/Lib/traceback.py @@ -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. |