Skip to content
Snippets Groups Projects
Commit f0def07f authored by Pulkit Goyal's avatar Pulkit Goyal
Browse files

branchmap: implement __contains__()

We have good occurences of `if branch in branchmap()` in our code. If
__contains__() is not implemented then it will use __iter__() to find whether
the element exists or not which is not good.

I am bit confused that whether I should move existing callers to hasbranch() or
this patch is a good way.

Differential Revision: https://phab.mercurial-scm.org/D6206
parent 29c22496
No related branches found
No related tags found
No related merge requests found
......@@ -182,6 +182,9 @@
def __getitem__(self, key):
return self._entries[key]
def __contains__(self, key):
return key in self._entries
def iteritems(self):
return self._entries.iteritems()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment