RELEASED Python 2.4, alpha 1

Michele Simionato michele.simionato at gmail.com
Fri Jul 9 14:38:00 EDT 2004


Anthony Baxter <anthony at python.org> wrote in message news:<mailman.157.1089357112.5135.python-list at python.org>...
> On behalf of the Python development team and the Python community, I'm
> happy to announce the first alpha of Python 2.4.
> <snip>

Uhm ... I see generator expressions have late bindings, just as list comprehensions:

>>> f1,f2,f3=tuple(lambda : i for i in [1,2,3])
>>> f1()
3
>>> f2()
3
>>> f3()
3

I was more in the camp of early bindings; I would like to know if late
bindings are final or subject to changes and it there a pronouncement
from Guido.


               Michele Simionato



More information about the Python-list mailing list