Examples:
Modules:
append()
Profiling:
Links:
Versions:
Append txt in the target function docstring.
txt
target
>>> @append('hi') ... def ho(): pass >>> ho.__doc__ 'hi' >>> @append(ho) ... def hi(): pass >>> hi.__doc__ 'hi'