Home | History | Annotate | Download | only in Lib

Lines Matching refs:hide

80     dircmp(a,b,ignore=None,hide=None)
84 HIDE is a list of names to hide,
98 filtered by hide and ignore.
111 def __init__(self, a, b, ignore=None, hide=None): # Initialize
114 if hide is None:
115 self.hide = [os.curdir, os.pardir] # Names never to be shown
117 self.hide = hide
125 self.hide+self.ignore)
127 self.hide+self.ignore)
180 # The hide and ignore properties are inherited from the parent
185 self.subdirs[x] = dircmp(a_x, b_x, self.ignore, self.hide)