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