summaryrefslogtreecommitdiff
path: root/Doc/library/builtins.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-18 03:57:31 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-06-18 03:57:31 +0000
commitbae5d81f5d1f388aad48c2ce1aee8682b157e1bd (patch)
tree5755103b2fc69d7beb51e425bfde6913a633a4d6 /Doc/library/builtins.rst
parent886a5f352fd64bcdc814dad292bbb37739a1cdd9 (diff)
downloadcpython-git-bae5d81f5d1f388aad48c2ce1aee8682b157e1bd.tar.gz
Issue #24314: Fix doc links for general attributes like __name__, __dict__
Diffstat (limited to 'Doc/library/builtins.rst')
-rw-r--r--Doc/library/builtins.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/builtins.rst b/Doc/library/builtins.rst
index 4b589a588d..8fb1fef6da 100644
--- a/Doc/library/builtins.rst
+++ b/Doc/library/builtins.rst
@@ -37,6 +37,6 @@ that wants to implement an :func:`open` function that wraps the built-in
As an implementation detail, most modules have the name ``__builtins__`` made
available as part of their globals. The value of ``__builtins__`` is normally
-either this module or the value of this module's :attr:`__dict__` attribute.
+either this module or the value of this module's :attr:`~object.__dict__` attribute.
Since this is an implementation detail, it may not be used by alternate
implementations of Python.