On 14 Oct 2006 09:25:00 -0700, Paul Boddie <[EMAIL PROTECTED]> wrote:

> Unlike Java, Python's first class functions and
> methods are already highly useful for callback-based systems

Curious: how well does the use of returning inner functions work as a
strategy for providing effectively 'anonymous' callbacks? e.g.

def outer(x):
  def inner(y):
    ...
  return inner

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

Reply via email to