From: Éric Araujo Date: Wed, 8 Jun 2011 02:53:20 +0000 (+0200) Subject: Add links from builtins module docs to built-in functions and constants docs X-Git-Tag: v3.2.2rc1~240^2~13^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=96deb7550effe961b2847a340ff05b1ab899d379;p=python Add links from builtins module docs to built-in functions and constants docs --- diff --git a/Doc/library/builtins.rst b/Doc/library/builtins.rst index c495728913..d4199d25f2 100644 --- a/Doc/library/builtins.rst +++ b/Doc/library/builtins.rst @@ -7,7 +7,9 @@ This module provides direct access to all 'built-in' identifiers of Python; for example, ``builtins.open`` is the full name for the built-in function -:func:`open`. +:func:`open`. See :ref:`built-in-funcs` and :ref:`built-in-consts` for +documentation. + This module is not normally accessed explicitly by most applications, but can be useful in modules that provide objects with the same name as a built-in value, diff --git a/Doc/library/constants.rst b/Doc/library/constants.rst index 51a1c262d6..fa61f68852 100644 --- a/Doc/library/constants.rst +++ b/Doc/library/constants.rst @@ -1,3 +1,5 @@ +.. _built-in-consts: + Built-in Constants ==================