[Python-checkins] cpython (3.4): Issue 21125: minor documentation tweak.

raymond.hettinger python-checkins at python.org
Wed Apr 2 07:18:14 CEST 2014


http://hg.python.org/cpython/rev/dfa399e74fcf
changeset:   90102:dfa399e74fcf
branch:      3.4
parent:      90098:2099da2fd317
user:        Raymond Hettinger <python at rcn.com>
date:        Tue Apr 01 22:17:33 2014 -0700
summary:
  Issue 21125: minor documentation tweak.

files:
  Doc/library/traceback.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/traceback.rst b/Doc/library/traceback.rst
--- a/Doc/library/traceback.rst
+++ b/Doc/library/traceback.rst
@@ -72,7 +72,7 @@
    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``.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list