]> granicus.if.org Git - python/commitdiff
#6810: add a link to the section about frame objects instead of just a description...
authorGeorg Brandl <georg@python.org>
Tue, 1 Sep 2009 08:00:47 +0000 (08:00 +0000)
committerGeorg Brandl <georg@python.org>
Tue, 1 Sep 2009 08:00:47 +0000 (08:00 +0000)
Doc/library/signal.rst
Doc/reference/datamodel.rst

index c039eee7169b1d04e0d0d18bc295768b63daaaf0..a7cf33d03a9f4feb4d4ae101119eb43d2b64a6a3 100644 (file)
@@ -211,9 +211,9 @@ The :mod:`signal` module defines the following functions:
    exception to be raised.
 
    The *handler* is called with two arguments: the signal number and the current
-   stack frame (``None`` or a frame object; for a description of frame objects, see
-   the reference manual section on the standard type hierarchy or see the attribute
-   descriptions in the :mod:`inspect` module).
+   stack frame (``None`` or a frame object; for a description of frame objects,
+   see the :ref:`description in the type hierarchy <frame-objects>` or see the
+   attribute descriptions in the :mod:`inspect` module).
 
 
 .. _signal-example:
index 865911ffe2b21d0a608cfec2f4dd10eee1df16c4..a10dbdb0a8504b5fbafb8d28f1a499e542cc0384 100644 (file)
@@ -959,6 +959,8 @@ Internal types
       If a code object represents a function, the first item in :attr:`co_consts` is
       the documentation string of the function, or ``None`` if undefined.
 
+   .. _frame-objects:
+
    Frame objects
       .. index:: object: frame