#6810: add a link to the section about frame objects instead of just a description where to find it.

This commit is contained in:
Georg Brandl 2009-09-01 08:00:47 +00:00
parent 018ad1c949
commit 86158fc4c7
2 changed files with 5 additions and 3 deletions

View 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:

View 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