[issue1498] Rename __builtins__ to __root_namespace__?

2007-11-26 Thread Guido van Rossum
New submission from Guido van Rossum: In http://bugs.python.org/issue1774369 I mentioned that I wanted to rename __builtins__ to __rootns__. Though right now I think something longer and less cryptic might be better. The reason is to avoid for once and for all the confusion between

[issue1498] Rename __builtins__ to __root_namespace__?

2007-11-26 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +py3k nosy: +tiran __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1498 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1498] Rename __builtins__ to __root_namespace__?

2007-11-26 Thread Christian Heimes
Christian Heimes added the comment: A simple replace with sed -i works just fine. Afterwards the code needs only minor adjustments and cleanups. find -name \*.py -or -name \*.c -or -name \*.h | xargs sed -i 's/__builtins__/__root__/g' __ Tracker [EMAIL

[issue1498] Rename __builtins__ to __root_namespace__?

2007-11-26 Thread Guido van Rossum
Guido van Rossum added the comment: OK, then we need to agree on a new name. I find __root__ too short, __rootns__ too cryptic, and __root_namespace__ too long. :-) What else have we got? __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1498

[issue1498] Rename __builtins__ to __root_namespace__?

2007-11-26 Thread Christian Heimes
Christian Heimes added the comment: __origin__ __footing__ __radix__ __namespace__ __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1498 __ ___ Python-bugs-list mailing list

[issue1498] Rename __builtins__ to __root_namespace__?

2007-11-26 Thread Guido van Rossum
Guido van Rossum added the comment: Time for a quick poll on the list. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1498 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1498] Rename __builtins__ to __root_namespace__?

2007-11-26 Thread Raymond Hettinger
Raymond Hettinger added the comment: FWIW, I find __root__ to be just right. It is not subject misspelling. It is distinct enough to serve as a mental link to a specific concept. The leading and trailing underscores cause just enough typing pain that I wouldn't want anything longer.