(self, a, alo, ahi, b, blo, bhi)
| 988 | b, dump_j, bhi) |
| 989 | |
| 990 | def _fancy_helper(self, a, alo, ahi, b, blo, bhi): |
| 991 | g = [] |
| 992 | if alo < ahi: |
| 993 | if blo < bhi: |
| 994 | g = self._plain_replace(a, alo, ahi, b, blo, bhi) |
| 995 | else: |
| 996 | g = self._dump('-', a, alo, ahi) |
| 997 | elif blo < bhi: |
| 998 | g = self._dump('+', b, blo, bhi) |
| 999 | |
| 1000 | yield from g |
| 1001 | |
| 1002 | def _qformat(self, aline, bline, atags, btags): |
| 1003 | r""" |
no test coverage detected