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