diff options
Diffstat (limited to 'Doc/library/traceback.rst')
-rw-r--r-- | Doc/library/traceback.rst | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/Doc/library/traceback.rst b/Doc/library/traceback.rst index bd53bc0..1961b9a 100644 --- a/Doc/library/traceback.rst +++ b/Doc/library/traceback.rst @@ -447,37 +447,42 @@ The output for the example would look similar to this: *** print_tb: File "<doctest...>", line 10, in <module> lumberjack() + ^^^^^^^^^^^^ *** print_exception: Traceback (most recent call last): File "<doctest...>", line 10, in <module> lumberjack() + ^^^^^^^^^^^^ File "<doctest...>", line 4, in lumberjack bright_side_of_death() + ^^^^^^^^^^^^^^^^^^^^^^ IndexError: tuple index out of range *** print_exc: Traceback (most recent call last): File "<doctest...>", line 10, in <module> lumberjack() + ^^^^^^^^^^^^ File "<doctest...>", line 4, in lumberjack bright_side_of_death() + ^^^^^^^^^^^^^^^^^^^^^^ IndexError: tuple index out of range *** format_exc, first and last line: Traceback (most recent call last): IndexError: tuple index out of range *** format_exception: ['Traceback (most recent call last):\n', - ' File "<doctest...>", line 10, in <module>\n lumberjack()\n', - ' File "<doctest...>", line 4, in lumberjack\n bright_side_of_death()\n', - ' File "<doctest...>", line 7, in bright_side_of_death\n return tuple()[0]\n', + ' File "<doctest default[0]>", line 10, in <module>\n lumberjack()\n ^^^^^^^^^^^^\n', + ' File "<doctest default[0]>", line 4, in lumberjack\n bright_side_of_death()\n ^^^^^^^^^^^^^^^^^^^^^^\n', + ' File "<doctest default[0]>", line 7, in bright_side_of_death\n return tuple()[0]\n ^^^^^^^^^^\n', 'IndexError: tuple index out of range\n'] *** extract_tb: [<FrameSummary file <doctest...>, line 10 in <module>>, <FrameSummary file <doctest...>, line 4 in lumberjack>, <FrameSummary file <doctest...>, line 7 in bright_side_of_death>] *** format_tb: - [' File "<doctest...>", line 10, in <module>\n lumberjack()\n', - ' File "<doctest...>", line 4, in lumberjack\n bright_side_of_death()\n', - ' File "<doctest...>", line 7, in bright_side_of_death\n return tuple()[0]\n'] + [' File "<doctest default[0]>", line 10, in <module>\n lumberjack()\n ^^^^^^^^^^^^\n', + ' File "<doctest default[0]>", line 4, in lumberjack\n bright_side_of_death()\n ^^^^^^^^^^^^^^^^^^^^^^\n', + ' File "<doctest default[0]>", line 7, in bright_side_of_death\n return tuple()[0]\n ^^^^^^^^^^\n'] *** tb_lineno: 10 |