show/hide this revision's text 4 deleted 558 characters in body

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!

show/hide this revision's text 3 added 129 characters in body

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, a another user dealing with such a subclass should only use "execute", so he won't see this the correct docstring if he uses e.g. "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 this is only possible on 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

I am not sure if it is somehow possible to do this automatic manipulation on the method in the class itself (instead of replacing it in each object). Maybe I need MetaMetaClasses...

Thanks!

show/hide this revision's text 2 added 439 characters in body

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". However, a user dealing with such a subclass should only use "execute", so he won't see this docstring if he uses e.g. "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 replaced with that of "_execute". Any ideas how this might be done?

I was thinking of metaclasses to do this, but it seems that this is only possible by some fragile hacks (e.g. by equipping each on the object with a custom bound version 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

I am not sure if it is somehow possible to do this automatic manipulation on the method in the class itself (instead of "execute").replacing it in each object).

Thanks!

show/hide this revision's text 1