comparison mercurial/match.py @ 8566:744d6322b05b

match: change all users of util.matcher to match.match
author Matt Mackall <mpm@selenic.com>
date Sun, 24 May 2009 02:56:14 -0500
parents 39fd67552297
children fea40a677d43
comparison
equal deleted inserted replaced
8565:268d16b2ec25 8566:744d6322b05b
48 _match.__init__(self, root, cwd, files, self.exact, False) 48 _match.__init__(self, root, cwd, files, self.exact, False)
49 49
50 class match(_match): 50 class match(_match):
51 def __init__(self, root, cwd, patterns, include, exclude, default): 51 def __init__(self, root, cwd, patterns, include, exclude, default):
52 f, mf, ap = util.matcher(root, cwd, patterns, include, exclude, 52 f, mf, ap = util.matcher(root, cwd, patterns, include, exclude,
53 None, default) 53 default)
54 _match.__init__(self, root, cwd, f, mf, ap) 54 _match.__init__(self, root, cwd, f, mf, ap)