[Python-checkins] r86799 - python/branches/py3k/Doc/library/builtins.rst

georg.brandl python-checkins at python.org
Fri Nov 26 13:08:19 CET 2010


Author: georg.brandl
Date: Fri Nov 26 13:08:19 2010
New Revision: 86799

Log:
Remove parenthetical remark that is confusing now that the module is not named "__builtin__" anymore.

Modified:
   python/branches/py3k/Doc/library/builtins.rst

Modified: python/branches/py3k/Doc/library/builtins.rst
==============================================================================
--- python/branches/py3k/Doc/library/builtins.rst	(original)
+++ python/branches/py3k/Doc/library/builtins.rst	Fri Nov 26 13:08:19 2010
@@ -32,9 +32,8 @@
 
        # ...
 
-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.


More information about the Python-checkins mailing list