Lines Matching refs:common
8 cmpfiles(a, b, common) -> ([], [], [])
92 and dir2, and reports on common immediate subdirectories.
99 common: a list of names in both dir1 and dir2.
123 def phase0(self): # Compare everything except common subdirectories
131 def phase1(self): # Compute common names
134 self.common = map(a.__getitem__, ifilter(b.__contains__, a))
143 for x in self.common:
173 def phase3(self): # Find out differences between common files
177 def phase4(self): # Find out differences between common subdirectories
178 # A new dircmp object is created for each common subdirectory,
209 print 'Trouble with common files :', self.funny_files
212 print 'Common subdirectories :', self.common_dirs
215 print 'Common funny cases :', self.common_funny
232 common=phase1, left_only=phase1, right_only=phase1,
241 def cmpfiles(a, b, common, shallow=1):
242 """Compare common files in two directories.
245 common -- list of file names found in both directories
255 for x in common: