(left: str, right: str)
| 26 | |
| 27 | |
| 28 | def _diff_text_block(left: str, right: str) -> Iterator[str]: |
| 29 | yield "Left:" |
| 30 | yield from _format_text_block_lines(left) |
| 31 | yield "" |
| 32 | yield "Right:" |
| 33 | yield from _format_text_block_lines(right) |
| 34 | |
| 35 | |
| 36 | def _format_text_block_lines(text: str) -> Iterator[str]: |
no test coverage detected