Somebody sent me a private e-mail.
It must be common for such silly questions that would just spam the
list. :-)
I'll write down the final solution anyway.
def getmethod(name):
methodList = [e for e in dir(self) if callable(getattr(self, e))]
if name in methodList:
return getattr(self,name)
else:
return None
Thanks for all.
Laci 2.0