Examples:
Modules:
append_str()
Profiling:
Links:
Versions:
Append txt in the target function docstring.
txt
target
str
txt is inserted to the __doc__ of the target
__doc__
>>> def ho(): ... '''Ho''' ... print(ho.__doc__) >>> @append_doc(ho) ... def hi(): ... '''Hi''' ... print(hi.__doc__) >>> hi() HiHo