Lines Matching refs:hide
89 dircmp(a, b, ignore=None, hide=None)
93 HIDE is a list of names to hide,
107 filtered by hide and ignore.
120 def __init__(self, a, b, ignore=None, hide=None): # Initialize
123 if hide is None:
124 self.hide = [os.curdir, os.pardir] # Names never to be shown
126 self.hide = hide
134 self.hide+self.ignore)
136 self.hide+self.ignore)
189 # The hide and ignore properties are inherited from the parent
194 self.subdirs[x] = dircmp(a_x, b_x, self.ignore, self.hide)