Using the docstring from one method to automatically overwrite that of another method. - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T00:32:20Zhttp://stackoverflow.com/feeds/question/71817http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/71817/using-the-docstring-from-one-method-to-automatically-overwrite-that-of-another-me0Using the docstring from one method to automatically overwrite that of another method.nikow2008-09-16T12:46:28Z2008-09-16T15:19:05Z
<p>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.</p>
<p>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?</p>
<p>I was thinking of metaclasses to do this, to make this completely transparent to the user. I guess this approach applies to many places where the template pattern is used in Python.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/71817/using-the-docstring-from-one-method-to-automatically-overwrite-that-of-another-me/72126#721260Answer by John Montgomery for Using the docstring from one method to automatically overwrite that of another method.John Montgomery2008-09-16T13:25:12Z2008-09-16T13:25:12Z<p>Well the doc-string is stored in <code>__doc__</code> so it wouldn't be too hard to re-assign it based on the doc-string of <code>_execute</code> after the fact.</p>
<p>Basically:</p>
<p><code></p>
<pre>
class MyClass(object):
def execute(self):
'''original doc-string'''
self._execute()
class SubClass(MyClass):
def _execute(self):
'''sub-class doc-string'''
pass
# re-assign doc-string of execute
def execute(self,*args,**kw):
return MyClass.execute(*args,**kw)
execute.__doc__=_execute.__doc__
</pre>
<p></code></p>
<p>Execute has to be re-declared to that the doc string gets attached to the version of execute for the <code>SubClass</code> and not for <code>MyClass</code> (which would otherwise interfere with other sub-classes).</p>
<p>That's not a very tidy way of doing it, but from the POV of the user of a library it should give the desired result. You could then wrap this up in a meta-class to make it easier for people who are sub-classing.</p>
http://stackoverflow.com/questions/71817/using-the-docstring-from-one-method-to-automatically-overwrite-that-of-another-me/72192#721922Answer by dF for Using the docstring from one method to automatically overwrite that of another method.dF2008-09-16T13:31:44Z2008-09-16T13:31:44Z<p>Is there a reason you can't override the base class's <code>execute</code> function directly?</p>
<pre><code>class Base(object):
def execute(self):
...
class Derived(Base):
def execute(self):
"""Docstring for derived class"""
Base.execute(self)
...stuff specific to Derived...
</code></pre>
<p>If you don't want to do the above:</p>
<p>Method objects don't support writing to the <code>__doc__</code> attribute, so you have to change <code>__doc__</code> in the actual function object. Since you don't want to override the one in the base class, you'd have to give each subclass its own copy of <code>execute</code>:</p>
<pre><code>class Derived(Base):
def execute(self):
return Base.execute(self)
class _execute(self):
"""Docstring for subclass"""
...
execute.__doc__= _execute.__doc__
</code></pre>
<p>but this is similar to a roundabout way of redefining <code>execute</code>...</p>
http://stackoverflow.com/questions/71817/using-the-docstring-from-one-method-to-automatically-overwrite-that-of-another-me/72596#725964Answer by Sylvain Defresne for Using the docstring from one method to automatically overwrite that of another method.Sylvain Defresne2008-09-16T14:02:38Z2008-09-16T14:02:38Z<p>Well, if you don't mind copying the original method in the subclass, you can use the following technique.</p>
<pre><code>import new
def copyfunc(func):
return new.function(func.func_code, func.func_globals, func.func_name,
func.func_defaults, func.func_closure)
class Metaclass(type):
def __new__(meta, name, bases, attrs):
for key in attrs.keys():
if key[0] == '_':
skey = key[1:]
for base in bases:
original = getattr(base, skey, None)
if original is not None:
copy = copyfunc(original)
copy.__doc__ = attrs[key].__doc__
attrs[skey] = copy
break
return type.__new__(meta, name, bases, attrs)
class Class(object):
__metaclass__ = Metaclass
def execute(self):
'''original doc-string'''
return self._execute()
class Subclass(Class):
def _execute(self):
'''sub-class doc-string'''
pass
</code></pre>
http://stackoverflow.com/questions/71817/using-the-docstring-from-one-method-to-automatically-overwrite-that-of-another-me/72785#727850Answer by Eli Courtwright for Using the docstring from one method to automatically overwrite that of another method.Eli Courtwright2008-09-16T14:17:43Z2008-09-16T14:17:43Z<p>I agree that the simplest, most Pythonic way of approaching this is to simply redefine execute in your subclasses and have it call the execute method of the base class:</p>
<pre><code>class Sub(Base):
def execute(self):
"""New docstring goes here"""
return Base.execute(self)
</code></pre>
<p>This is very little code to accomplish what you want; the only downside is that you must repeat this code in every subclass that extends Base. However, this is a small price to pay for the behavior you want.</p>
<p>If you want a sloppy and verbose way of making sure that the docstring for execute is dynamically generated, you can use the descriptor protocol, which would be significantly less code than the other proposals here. This is annoying because you can't just set a descriptor on an existing function, which means that execute must be written as a separate class with a <code>__call__</code> method.</p>
<p>Here's the code to do this, but keep in mind that my above example is much simpler and more Pythonic:</p>
<pre><code>class Executor(object):
__doc__ = property(lambda self: self.inst._execute.__doc__)
def __call__(self):
return self.inst._execute()
class Base(object):
execute = Executor()
class Sub(Base):
def __init__(self):
self.execute.inst = self
def _execute(self):
"""Actually does something!"""
return "Hello World!"
spam = Sub()
print spam.execute.__doc__ # prints "Actually does something!"
help(spam) # the execute method says "Actually does something!"
</code></pre>
http://stackoverflow.com/questions/71817/using-the-docstring-from-one-method-to-automatically-overwrite-that-of-another-me/73473#734730Answer by _Mark_ for Using the docstring from one method to automatically overwrite that of another method._Mark_2008-09-16T15:19:05Z2008-09-16T15:19:05Z<p>Look at the functools.wraps() decorator; it does all of this, but I don't know offhand if you can get it to run in the right context</p>