On May 5, 10:20 pm, Aaron Brady <castiro...@gmail.com> wrote:
> def auto( f ):
>     def _inner( *ar, **kw ):
>         return f( _inner, *ar, **kw )
>     return _inner

Quoting myself near the start of this thread:

Here's an idea:
>>> def bindfunc(f):

...     def boundf(*args, **kwargs):
...         return f(boundf, *args, **kwargs)
...     return boundf


--
Arnaud
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to