Home | History | Annotate | Download | only in python2.7

Lines Matching refs:diffs

565             # invariant:  we've pumped out correct diffs to change
785 contrary, minimal diffs are often counter-intuitive, because they synch
1009 # pump out diffs from before the synch point
1039 # pump out diffs from after the synch point
1163 Unified diffs are a compact way of showing line changes and a few
1169 created from file.readlines() result in diffs that are suitable for
1247 Context diffs are a compact way of showing line changes and a few
1253 created from file.readlines() result in diffs that are suitable for
1813 def _line_wrapper(self,diffs):
1817 for fromdata,todata,flag in diffs:
1841 def _collect_lines(self,diffs):
1850 for fromdata,todata,flag in diffs:
1969 # create diffs iterator which generates side by side from/to data
1974 diffs = _mdiff(fromlines,tolines,context_lines,linejunk=self._linejunk,
1979 diffs = self._line_wrapper(diffs)
1982 fromlist,tolist,flaglist = self._collect_lines(diffs)