summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-11-26 12:08:19 (GMT)
committerGeorg Brandl <georg@python.org>2010-11-26 12:08:19 (GMT)
commit62f52c484dadcedba2b480f78a04ca9622d94d6f (patch)
tree0b58e527f8e07c082ed5ad26f6c7346ac0df76fa /Doc
parentf51a6c7d74fc9a0f933f7d2bd746ce7fd2b82a4c (diff)
downloadcpython-62f52c484dadcedba2b480f78a04ca9622d94d6f.zip
cpython-62f52c484dadcedba2b480f78a04ca9622d94d6f.tar.gz
cpython-62f52c484dadcedba2b480f78a04ca9622d94d6f.tar.bz2
Remove parenthetical remark that is confusing now that the module is not named "__builtin__" anymore.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/builtins.rst11
1 files changed, 5 insertions, 6 deletions
diff --git a/Doc/library/builtins.rst b/Doc/library/builtins.rst
index 9341e98..c495728 100644
--- a/Doc/library/builtins.rst
+++ b/Doc/library/builtins.rst
@@ -32,9 +32,8 @@ that wants to implement an :func:`open` function that wraps the built-in
# ...
-As an implementation detail, most modules have the name ``__builtins__`` (note
-the ``'s'``) made available as part of their globals. The value of
-``__builtins__`` is normally either this module or the value of this modules's
-:attr:`__dict__` attribute. Since this is an implementation detail, it may not
-be used by alternate implementations of Python.
-
+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 modules's :attr:`__dict__` attribute.
+Since this is an implementation detail, it may not be used by alternate
+implementations of Python.