Re: [Tutor] Where is the __builtin__ module?

2007-02-19 Thread Kent Johnson
Rikard Bosnjakovic wrote: > On 2/19/07, Dick Moores <[EMAIL PROTECTED]> wrote: > >> Is there one? If there is, where is it? > > Yes, there is one. It'sbuiltin(!) in the interpreter! ;-) More info here: http://docs.python.org/lib/module-builtin.html Kent

Re: [Tutor] Where is the __builtin__ module?

2007-02-19 Thread Alan Gauld
"Dick Moores" <[EMAIL PROTECTED]> wrote > "import __builtin__" occurs frequently in files in Lib/, Really? I'm surprised, I can't think why. > unable to find a module named "__builtin__" or "__builtin__.py" > anywhere in my Python 2.5. Is there one? If there is, where is it? It's C code so it's

Re: [Tutor] Where is the __builtin__ module?

2007-02-19 Thread Rikard Bosnjakovic
On 2/19/07, Dick Moores <[EMAIL PROTECTED]> wrote: > Is there one? If there is, where is it? Yes, there is one. It'sbuiltin(!) in the interpreter! ;-) -- - Rikard. ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tut

[Tutor] Where is the __builtin__ module?

2007-02-19 Thread Dick Moores
"import __builtin__" occurs frequently in files in Lib/, but I'm unable to find a module named "__builtin__" or "__builtin__.py" anywhere in my Python 2.5. Is there one? If there is, where is it? Thanks, Dick Moores ___ Tutor maillist - Tutor@pyth