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