summaryrefslogtreecommitdiff
path: root/Lib/traceback.py
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-04-08 09:47:14 +0300
committerBerker Peksag <berker.peksag@gmail.com>2015-04-08 09:47:14 +0300
commit716b3d3e9137aeeed4ee3480a5302c54442405b6 (patch)
tree394ac837de2e3af43b835877a2a05081e215471c /Lib/traceback.py
parentcb6fdf2c63961e8b9111357ca57c3de27d029820 (diff)
downloadcpython-git-716b3d3e9137aeeed4ee3480a5302c54442405b6.tar.gz
Issue #23883: Add missing entries to traceback.__all__.
Diffstat (limited to 'Lib/traceback.py')
-rw-r--r--Lib/traceback.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/traceback.py b/Lib/traceback.py
index f7705cdabc..8a554cfc06 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.