Mercurial > public > mercurial-scm > hg
comparison mercurial/ignore.py @ 5271:fae670ee6c6d
kill lonely docstring
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Thu, 30 Aug 2007 23:54:01 +0200 |
parents | ac97e065cfc7 |
children | 04c76f296ad6 |
comparison
equal
deleted
inserted
replaced
5270:b962f82cfd61 | 5271:fae670ee6c6d |
---|---|
83 for f, patlist in pats.items(): | 83 for f, patlist in pats.items(): |
84 files, ignorefunc, anypats = ( | 84 files, ignorefunc, anypats = ( |
85 util.matcher(root, inc=patlist, src=f)) | 85 util.matcher(root, inc=patlist, src=f)) |
86 | 86 |
87 return ignorefunc | 87 return ignorefunc |
88 | |
89 | |
90 '''default match function used by dirstate and | |
91 localrepository. this honours the repository .hgignore file | |
92 and any other files specified in the [ui] section of .hgrc.''' | |
93 |