From: dman <ds...@ri...> - 2001-11-04 17:56:55
|
On Sun, Nov 04, 2001 at 04:19:24PM +0100, rob...@ya... wrote: | hi, | | im missing the __builtins__-variable from | the globals()-function. did someone steal it? ;-) No : I was informed once that the __builtins__ name is an implementation detail of cpython. The real module name is __builtin__ and you need to import it if you want to mess with it. -D |