Skip to content

Commit

Permalink
pythongh-127347: Document traceback.print_list (pythonGH-127348)
Browse files Browse the repository at this point in the history
Previously, `traceback.print_list` didn't have a documentation entry and was not exposed in `traceback.__all__`. Now it has a documentation entry and is exposed in `__all__`.
(cherry picked from commit 8ba9f5b)

Co-authored-by: Tomas R. <[email protected]>
  • Loading branch information
tomasr8 authored and miss-islington committed Dec 3, 2024
1 parent 3479a71 commit 8b52e29
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions Doc/library/traceback.rst
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,13 @@ Module-Level Functions
arguments have the same meaning as for :func:`print_stack`.


.. function:: print_list(extracted_list, file=None)

Print the list of tuples as returned by :func:`extract_tb` or
:func:`extract_stack` as a formatted stack trace to the given file.
If *file* is ``None``, the output is written to :data:`sys.stderr`.


.. function:: format_list(extracted_list)

Given a list of tuples or :class:`FrameSummary` objects as returned by
Expand Down
3 changes: 1 addition & 2 deletions Lib/test/test_traceback.py
Original file line number Diff line number Diff line change
Expand Up @@ -4485,9 +4485,8 @@ class MiscTest(unittest.TestCase):

def test_all(self):
expected = set()
denylist = {'print_list'}
for name in dir(traceback):
if name.startswith('_') or name in denylist:
if name.startswith('_'):
continue
module_object = getattr(traceback, name)
if getattr(module_object, '__module__', None) == 'traceback':
Expand Down
2 changes: 1 addition & 1 deletion Lib/traceback.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'format_tb', 'print_exc', 'format_exc', 'print_exception',
'print_last', 'print_stack', 'print_tb', 'clear_frames',
'FrameSummary', 'StackSummary', 'TracebackException',
'walk_stack', 'walk_tb']
'walk_stack', 'walk_tb', 'print_list']

#
# Formatting and printing lists of traceback lines.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Publicly expose :func:`traceback.print_list` in :attr:`!traceback.__all__`.

0 comments on commit 8b52e29

Please sign in to comment.