4
votes
Using the docstring from one method to automatically overwrite that of another method.
Well, if you don't mind copying the original method in the subclass, you can use the following technique.
import new
def copyfunc(func):
return new.function(func.func_code, fun …
