[Python-3000] Sky pie: a "var" keyword

Fredrik Lundh fredrik at pythonware.com
Mon Oct 9 21:41:23 CEST 2006


Marcin 'Qrczak' Kowalczyk wrote:

> It also allows to put globals in an array instead of a dictionary,
> making them as fast as locals.

so module namespaces will no longer be populated by *executing* the 
module contents?

what would happen if you tried to execute the following code?

    def foo():
       bar()

    def bar():
       pass

</F>



More information about the Python-3000 mailing list