Generate comparison results for a same-tagged range.
(self, tag, x, lo, hi)
| 872 | yield from g |
| 873 | |
| 874 | def _dump(self, tag, x, lo, hi): |
| 875 | """Generate comparison results for a same-tagged range.""" |
| 876 | for i in range(lo, hi): |
| 877 | yield '%s %s' % (tag, x[i]) |
| 878 | |
| 879 | def _plain_replace(self, a, alo, ahi, b, blo, bhi): |
| 880 | assert alo < ahi and blo < bhi |
no outgoing calls
no test coverage detected