Mercurial > hg
changeset 26325:cce8ebd31407
match: remove a mutable default argument
Mutable default arguments are know to the state of California to cause bugs.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Thu, 24 Sep 2015 00:59:26 -0700 |
parents | 4a8e21578e14 |
children | 58218b0e6005 |
files | mercurial/scmutil.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/scmutil.py Thu Sep 24 01:58:33 2015 -0700 +++ b/mercurial/scmutil.py Thu Sep 24 00:59:26 2015 -0700 @@ -753,7 +753,7 @@ ret.append(kindpat) return ret -def matchandpats(ctx, pats=[], opts={}, globbed=False, default='relpath', +def matchandpats(ctx, pats=(), opts={}, globbed=False, default='relpath', badfn=None): '''Return a matcher and the patterns that were used. The matcher will warn about bad matches, unless an alternate badfn callback