(tw: TerminalWriter, doc: str, indent: str = " ")
| 1587 | |
| 1588 | |
| 1589 | def write_docstring(tw: TerminalWriter, doc: str, indent: str = " ") -> None: |
| 1590 | for line in doc.split("\n"): |
| 1591 | tw.line(indent + line) |
| 1592 | |
| 1593 | |
| 1594 | class Function(PyobjMixin, nodes.Item): |
no test coverage detected