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
class FooBar: def __getattr__(self, name): def foo(): print name return foo a = FooBar() a.helloThere()