Mercurial > hg
changeset 19550:0c8ad779eb36
basectx: move __contains__ from changectx
author | Sean Farley <sean.michael.farley@gmail.com> |
---|---|
date | Mon, 05 Aug 2013 17:21:38 -0500 |
parents | 78155484ae34 |
children | e07c69145724 |
files | mercurial/context.py |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/context.py Mon Aug 05 17:21:23 2013 -0500 +++ b/mercurial/context.py Mon Aug 05 17:21:38 2013 -0500 @@ -53,6 +53,9 @@ def __ne__(self, other): return not (self == other) + def __contains__(self, key): + return key in self._manifest + @propertycache def substate(self): return subrepo.state(self, self._repo.ui) @@ -197,9 +200,6 @@ p = p[:-1] return [changectx(self._repo, x) for x in p] - def __contains__(self, key): - return key in self._manifest - def __getitem__(self, key): return self.filectx(key)