class A(object): @staticmethod def stat_meth(): print("Look no self was passed") >>> a = A() >>> a.stat_meth() Look no self was passed