(fun, text)
| 339 | |
| 340 | |
| 341 | def fixdoc(fun, text): |
| 342 | tem = (fun.__doc__ + '\n\n') if fun.__doc__ is not None else '' |
| 343 | fun.__doc__ = tem + textwrap.fill(textwrap.dedent(text)) |
| 344 | |
| 345 | RECURSIONLIMIT_DELTA = 30 |
| 346 |
no test coverage detected
searching dependent graphs…