diff options
author | Raymond Hettinger <python@rcn.com> | 2014-04-02 05:17:33 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2014-04-02 05:17:33 (GMT) |
commit | da4bf8f16a60ae5592c8b95fc9543e28133867ca (patch) | |
tree | 04eb276fe074a14e262de2cb48d41147d5fa4368 /Doc | |
parent | 1acc69c650edbea4e273f2184168d1fde5a74911 (diff) | |
download | cpython-da4bf8f16a60ae5592c8b95fc9543e28133867ca.zip cpython-da4bf8f16a60ae5592c8b95fc9543e28133867ca.tar.gz cpython-da4bf8f16a60ae5592c8b95fc9543e28133867ca.tar.bz2 |
Issue 21125: minor documentation tweak.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/traceback.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/traceback.rst b/Doc/library/traceback.rst index b68a8f1..15fbedc 100644 --- a/Doc/library/traceback.rst +++ b/Doc/library/traceback.rst @@ -72,7 +72,7 @@ The module defines the following functions: Return a list of up to *limit* "pre-processed" stack trace entries extracted from the traceback object *traceback*. It is useful for alternate formatting of stack traces. If *limit* is omitted or ``None``, all entries are extracted. A - "pre-processed" stack trace entry is a quadruple (*filename*, *line number*, + "pre-processed" stack trace entry is a 4-tuple (*filename*, *line number*, *function name*, *text*) representing the information that is usually printed for a stack trace. The *text* is a string with leading and trailing whitespace stripped; if the source is not available it is ``None``. |