Alex Martelli wrote: > Not sure what the &key means here, but omitting that > > def black_white(function, limit): > def result(x,y): > if function(x, y) > limit: return 1.0 > else: return 0.0 > return result
&key is something like keyword arguments in Python. And looks like you are right again (I've tested it in Pyhton) and my assumption was wrong, so the important thing is to support closures, which Python does, even with local function definitions. -- Frank Buss, [EMAIL PROTECTED] http://www.frank-buss.de, http://www.it4-systems.de -- http://mail.python.org/mailman/listinfo/python-list