James Stroud <[EMAIL PROTECTED]> writes: > Any ideas on how to do this with a regular function, or is the way I've done > it the pythonic choice?
I think you're trying to do something like this:
def FunctionMaker(avar, func, label):
def callback():
avar.set(label)
func()
return callback
--
http://mail.python.org/mailman/listinfo/python-list
