Mercurial > public > mercurial-scm > hg
diff mercurial/util.py @ 4256:fe0fe0b4d73b
Merge additional fixes for my matcher changes
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Tue, 20 Mar 2007 22:21:05 -0300 |
parents | da6b14877195 ef1f1a4b2efb |
children | 1eaa8d90c689 |
line wrap: on
line diff
--- a/mercurial/util.py Tue Mar 20 13:13:39 2007 -0700 +++ b/mercurial/util.py Tue Mar 20 22:21:05 2007 -0300 @@ -447,7 +447,7 @@ if c in _globchars: return True return False - def regex(kind, name, tail): + def regex(kind, name): '''convert a pattern into a regular expression''' if not name: return '' @@ -463,16 +463,16 @@ if name.startswith('^'): return name return '.*' + name - return globre(name, '', tail) + return globre(name, '', '(?:/|$)') - def matchfn(pats, tail): + def matchfn(pats): """build a matching function from a set of patterns""" if not pats: return matches = [] for k, p in pats: try: - pat = '(?:%s)' % regex(k, p, tail) + pat = '(?:%s)' % regex(k, p) matches.append(re.compile(pat).match) except re.error: if src: raise Abort("%s: invalid pattern (%s): %s" % (src, k, p)) @@ -520,15 +520,15 @@ roots, pats, anypats = normalizepats(names, dflt_pat) - patmatch = matchfn(pats, '$') or always + patmatch = matchfn(pats) or always incmatch = always if inc: dummy, inckinds, dummy = normalizepats(inc, 'glob') - incmatch = matchfn(inckinds, '(?:/|$)') + incmatch = matchfn(inckinds) excmatch = lambda fn: False if exc: dummy, exckinds, dummy = normalizepats(exc, 'glob') - excmatch = matchfn(exckinds, '(?:/|$)') + excmatch = matchfn(exckinds) if not names and inc and not exc: # common case: hgignore patterns