Jiwon Seo <[EMAIL PROTECTED]> wrote:
> 
> On 2/8/06, Guido van Rossum <[EMAIL PROTECTED]> wrote:
> > On 2/8/06, Patrick Collison <[EMAIL PROTECTED]> wrote:
> > > And to think that people thought that keeping "lambda", but changing
> > > the name, would avoid all the heated discussion... :-)
> >
> > Note that I'm not participating in any attempts to "improve" lambda.
> 
> Then, is there any chance anonymous function - or closure - is
> supported in python 3.0 ? Or at least have a discussion about it?
> 
> or is there already discussion about it (and closed)?

Closures already exist in Python.

>>> def foo(bar):
...     return lambda: bar + 1
...
>>> a = foo(5)
>>> a()
6

 - Josiah

_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to