(*args, **kw)
| 186 | Adapted from from a comp.lang.python posting |
| 187 | by Duncan Booth.""" |
| 188 | def wrapper(*args, **kw): |
| 189 | return new_fn(*args, **kw) |
| 190 | if old_fn.__doc__: |
| 191 | wrapper.__doc__ = strip_indentation(old_fn.__doc__) + additional_text |
| 192 | return wrapper |
nothing calls this directly
no outgoing calls
no test coverage detected