Is it possible to implement generic method handlers in python which allow for calling of non-existent functions? Something like this:
class FooBar: def __gener
def __getattr__(self, name): #return your function here...