class Foo: def bar(self): print("Called bar") let f = Foo() f.bar() def other(instance): print("Called other") def noargs(): print("Uh oh, binding will work but call will fail.") Foo.other = other Foo.noargs = noargs print('