[Python-checkins] r60760 - peps/trunk/pep-3100.txt

kurt.kaiser python-checkins at python.org
Wed Feb 13 16:37:54 CET 2008


Author: kurt.kaiser
Date: Wed Feb 13 16:37:54 2008
New Revision: 60760

Modified:
   peps/trunk/pep-3100.txt
Log:
Try to correct what appears to be a bug in rest referencing:
Referencing #__builtin(s)?__ changed to #builtin(s)?


Modified: peps/trunk/pep-3100.txt
==============================================================================
--- peps/trunk/pep-3100.txt	(original)
+++ peps/trunk/pep-3100.txt	Wed Feb 13 16:37:54 2008
@@ -99,7 +99,7 @@
 
 * In order to get rid of the confusion between __builtin__ and __builtins__,
   it was decided to rename __builtin__ (the module) to builtins, and to leave
-  __builtins__ (the sandbox hook) alone. [#__builtin__]_ [#__builtins__]_ [done]
+  __builtins__ (the sandbox hook) alone. [#builtin]_ [#builtins]_ [done]
 * Attributes on functions of the form ``func_whatever`` will be renamed
   ``__whatever__`` [17]_ [done]
 * Set literals and comprehensions [19]_ [20]_ [done]
@@ -405,10 +405,10 @@
 .. [#pep3110] PEP 3110 (Catching Exceptions in Python 3000)
    http://www.python.org/dev/peps/pep-3110/#semantic-changes
 
-.. [#__builtin__] Approach to resolving __builtin__ vs __builtins__
+.. [#builtin] Approach to resolving __builtin__ vs __builtins__
    http://mail.python.org/pipermail/python-3000/2007-March/006161.html
 
-.. [#__builtins__] New name for __builtins__
+.. [#builtins] New name for __builtins__
    http://mail.python.org/pipermail/python-dev/2007-November/075388.html
    
 .. [#exitfunc-patch] Patch to remove sys.exitfunc


More information about the Python-checkins mailing list