From: Raymond Hettinger Date: Wed, 2 Apr 2014 05:11:34 +0000 (-0700) Subject: Issue 21125: minor wording tweak. X-Git-Tag: v2.7.7rc1~94 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9190b6f4a6f4119d6459d04a74f9b1ad511d1ca0;p=python Issue 21125: minor wording tweak. --- diff --git a/Doc/library/traceback.rst b/Doc/library/traceback.rst index 15eaa6e018..6859d4bb0a 100644 --- a/Doc/library/traceback.rst +++ b/Doc/library/traceback.rst @@ -75,7 +75,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``.