Generate comparison results for a same-tagged range.
(tag, x, lo, hi)
| 139 | |
| 140 | |
| 141 | def _dump_lines(tag, x, lo, hi): |
| 142 | """Generate comparison results for a same-tagged range.""" |
| 143 | for l in x[lo:hi]: |
| 144 | yield from _dump_line(tag, l) |
| 145 | |
| 146 | |
| 147 | def _dump_line(tag, x): |
no test coverage detected