]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add links from builtins module docs to built-in functions and constants docs
authorÉric Araujo <merwok@netwok.org>
Fri, 29 Jul 2011 09:53:57 +0000 (11:53 +0200)
committerÉric Araujo <merwok@netwok.org>
Fri, 29 Jul 2011 09:53:57 +0000 (11:53 +0200)
Doc/library/__builtin__.rst
Doc/library/constants.rst

index ec189b6c9fb65d6b7a62faf39934163d55e9e7b8..673d74f984b298896763c62542d42124097088a5 100644 (file)
@@ -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,
index 80e792c9521d7fda0233ca14ff63b57509ce9745..0db83374811d3d9c437624b819b703583305eb66 100644 (file)
@@ -1,3 +1,5 @@
+.. _built-in-consts:
+
 Built-in Constants
 ==================