Is there a reasonable way in Python to implement mixin behavior similar to that found in Ruby -- that is, without using inheritance?
class Mixin(object): def
You can add the methods as functions:
Foo.b = Mixin.b.im_func Foo.c = Mixin.c.im_func