diff options
author | Éric Araujo <merwok@netwok.org> | 2011-06-08 02:53:20 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-06-08 02:53:20 (GMT) |
commit | 96deb7550effe961b2847a340ff05b1ab899d379 (patch) | |
tree | fe14a0106373013611ac72d0cb552b4e465c77ac /Doc/library/builtins.rst | |
parent | b805c47138d23c2d6cbaffde81a4b7d9afe44e4b (diff) | |
download | cpython-96deb7550effe961b2847a340ff05b1ab899d379.zip cpython-96deb7550effe961b2847a340ff05b1ab899d379.tar.gz cpython-96deb7550effe961b2847a340ff05b1ab899d379.tar.bz2 |
Add links from builtins module docs to built-in functions and constants docs
Diffstat (limited to 'Doc/library/builtins.rst')
-rw-r--r-- | Doc/library/builtins.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/builtins.rst b/Doc/library/builtins.rst index c495728..d4199d2 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, |