Home | History | Annotate | Download | only in Lib

Lines Matching refs:diffs

551             # invariant:  we've pumped out correct diffs to change
770 contrary, minimal diffs are often counter-intuitive, because they synch
991 # pump out diffs from before the synch point
1019 # pump out diffs from after the synch point
1141 Unified diffs are a compact way of showing line changes and a few
1147 created from file.readlines() result in diffs that are suitable for
1226 Context diffs are a compact way of showing line changes and a few
1232 created from file.readlines() result in diffs that are suitable for
1847 def _line_wrapper(self,diffs):
1851 for fromdata,todata,flag in diffs:
1875 def _collect_lines(self,diffs):
1884 for fromdata,todata,flag in diffs:
2003 # create diffs iterator which generates side by side from/to data
2008 diffs = _mdiff(fromlines,tolines,context_lines,linejunk=self._linejunk,
2013 diffs = self._line_wrapper(diffs)
2016 fromlist,tolist,flaglist = self._collect_lines(diffs)