Lines Matching refs:ignore
91 dircmp(a, b, ignore=None, hide=None)
93 IGNORE is a list of names to ignore,
109 filtered by hide and ignore.
124 def __init__(self, a, b, ignore=None, hide=None): # Initialize
131 if ignore is None:
132 self.ignore = DEFAULT_IGNORES
134 self.ignore = ignore
138 self.hide+self.ignore)
140 self.hide+self.ignore)
194 # The hide and ignore properties are inherited from the parent
199 self.subdirs[x] = self.__class__(a_x, b_x, self.ignore, self.hide)