Do overridden methods inherit decorators in python?

Think about it this way

class A(object):
    def fun(self, arg):
        return None
    fun = memoized(fun)

No. It's a completely different function. But you can try that for yourself with a dummy decorator.


No, it doesn't.