A special case of the interpd that first performs a dedent on the incoming docstring
(func)
| 107 | |
| 108 | |
| 109 | def dedent_interpd(func): |
| 110 | """A special case of the interpd that first performs a dedent on |
| 111 | the incoming docstring""" |
| 112 | return interpd(dedent(func)) |
| 113 | |
| 114 | |
| 115 | def copy_dedent(source): |