Welcome, guest | Sign In | My Account | Store | Cart
def mixin(mod):
    return type("mixin(%s)" % (mod.__name__,), (object,), mod.__dict__)

History