Lines Matching refs:list
93 IGNORE is a list of names to ignore,
95 HIDE is a list of names to hide,
110 common: a list of names in both dir1 and dir2.
116 same_files: list of identical files.
117 diff_files: list of filenames which differ.
118 funny_files: list of files which could not be compared.
147 self.common = list(map(a.__getitem__, filter(b.__contains__, a)))
148 self.left_only = list(map(a.__getitem__, filterfalse(b.__contains__, a)))
149 self.right_only = list(map(b.__getitem__, filterfalse(a.__contains__, b)))
262 common -- list of file names found in both directories
295 return list(filterfalse(skip.__contains__, flist))