how to repeat function definitions less
Daniel Neuhäuser
daniel.neuhaeuser at googlemail.com
Sat Mar 14 19:17:40 EDT 2009
I would suggest using functools.partial like this
from functools import partial
class Foo(object):
#...
red = partial(color='red')
More information about the Python-list
mailing list