[issue1535] Rename __builtin__ to builtins

2007-12-02 Thread Georg Brandl
Georg Brandl added the comment: Committed r59268. -- status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list

[issue1535] Rename __builtin__ to builtins

2007-12-01 Thread Guido van Rossum
Guido van Rossum added the comment: PS. A note on backporting this to 2.6: I think it's sufficient if "builtins" exists in sys.modules as an alias of "__builtin__" in 2.6. Crys: go ahead and check in the fixer as well. __ Tracker <[EMAIL PROTECTED]>

[issue1535] Rename __builtin__ to builtins

2007-12-01 Thread Guido van Rossum
Guido van Rossum added the comment: OK Georg, take 'er away! -- assignee: gvanrossum -> georg.brandl resolution: -> accepted __ Tracker <[EMAIL PROTECTED]> __

[issue1535] Rename __builtin__ to builtins

2007-12-01 Thread Georg Brandl
Changes by Georg Brandl: Removed file: http://bugs.python.org/file8842/builtins.diff __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list

[issue1535] Rename __builtin__ to builtins

2007-12-01 Thread Christian Heimes
Christian Heimes added the comment: Here is a fixer for the new name. Added file: http://bugs.python.org/file8843/2to3_builtins.patch __ Tracker <[EMAIL PROTECTED]> __Index: tests/test_fixers.py =

[issue1535] Rename __builtin__ to builtins

2007-12-01 Thread Christian Heimes
Christian Heimes added the comment: I had to copy the __builtin__.rst prior to patch. svn cp Doc/library/__builtin__.rst Doc/library/builtins.rst svn patch -p0 < builtins.diff svn del --force Doc/library/__builtin__.rst -- keywords: +patch, py3k nosy: +tiran priority: -> high