The problem: I have a class which contains a template method "execute" which calls another method "_execute". Subclasses are supposed to overwrite "_execute" to implement some specific functionality. This functionality should naturally be documented in the docstring of "_execute". I also expect users to create their own subclasses to extend the library. However, another user dealing with such a subclass should only use "execute", so he won't see the correct docstring if he uses "help(...)" in the interpreter.
Therefore it would be nice to modify the base class in such a way that in a subclass the docstring of "execute" is automatically replaced with that of "_execute". Any ideas how this might be done?
I was thinking of metaclasses to do this, but it seems that to make this is only possible on completely transparent to the object level, e.g.:
class DocMetaClass(type):
def __call__(cls, *args, **kwargs):
obj = cls.__new__(cls)
def execute(self, x):
return self._execute(x)
execute.__doc__ = obj._execute.__doc__
obj.execute = new.instancemethod(execute, obj)
obj.__init__(*args, **kwargs)
return obj
user. I am not sure if it is somehow possible to do guess this automatic manipulation on the method in approach applies to many places where the class itself (instead of replacing it template pattern is used in each object). Maybe I need MetaMetaClasses..Python.
Thanks!
