diff options
author | Éric Araujo <merwok@netwok.org> | 2011-07-29 09:53:57 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-07-29 09:53:57 (GMT) |
commit | ad84ea11c21e503dd5be12a0702340d38c96603c (patch) | |
tree | 28722306ea17f08d1b77b0d5baa62ec39571dc6a /Doc | |
parent | 8d2a6fd9a94ca7570764522ccd8f426b820faeca (diff) | |
download | cpython-ad84ea11c21e503dd5be12a0702340d38c96603c.zip cpython-ad84ea11c21e503dd5be12a0702340d38c96603c.tar.gz cpython-ad84ea11c21e503dd5be12a0702340d38c96603c.tar.bz2 |
Add links from builtins module docs to built-in functions and constants docs
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/__builtin__.rst | 4 | ||||
-rw-r--r-- | Doc/library/constants.rst | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Doc/library/__builtin__.rst b/Doc/library/__builtin__.rst index ec189b6..673d74f 100644 --- a/Doc/library/__builtin__.rst +++ b/Doc/library/__builtin__.rst @@ -8,7 +8,9 @@ This module provides direct access to all 'built-in' identifiers of Python; for example, ``__builtin__.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 80e792c..0db8337 100644 --- a/Doc/library/constants.rst +++ b/Doc/library/constants.rst @@ -1,3 +1,5 @@ +.. _built-in-consts: + Built-in Constants ================== |