Lines Matching refs:diffs
563 # invariant: we've pumped out correct diffs to change
783 contrary, minimal diffs are often counter-intuitive, because they synch
1007 # pump out diffs from before the synch point
1037 # pump out diffs from after the synch point
1161 Unified diffs are a compact way of showing line changes and a few
1167 created from file.readlines() result in diffs that are suitable for
1245 Context diffs are a compact way of showing line changes and a few
1251 created from file.readlines() result in diffs that are suitable for
1811 def _line_wrapper(self,diffs):
1815 for fromdata,todata,flag in diffs:
1839 def _collect_lines(self,diffs):
1848 for fromdata,todata,flag in diffs:
1967 # create diffs iterator which generates side by side from/to data
1972 diffs = _mdiff(fromlines,tolines,context_lines,linejunk=self._linejunk,
1977 diffs = self._line_wrapper(diffs)
1980 fromlist,tolist,flaglist = self._collect_lines(diffs)