# HG changeset patch # User Sean Farley # Date 1376512149 18000 # Node ID 9d56a33590117e9af0fba80b16c0323b03094b9d # Parent 40040e4015f918ff1b0ecf519af8fbe66c372f81 commitablectx: move __contains__ from workingctx diff -r 40040e4015f9 -r 9d56a3359011 mercurial/context.py --- a/mercurial/context.py Wed Aug 14 15:28:43 2013 -0500 +++ b/mercurial/context.py Wed Aug 14 15:29:09 2013 -0500 @@ -862,6 +862,9 @@ def __nonzero__(self): return True + def __contains__(self, key): + return self._repo.dirstate[key] not in "?r" + class workingctx(commitablectx): """A workingctx object makes access to data related to the current working directory convenient. @@ -875,9 +878,6 @@ changes=None): super(workingctx, self).__init__(repo, text, user, date, extra, changes) - def __contains__(self, key): - return self._repo.dirstate[key] not in "?r" - def _buildflagfunc(self): # Create a fallback function for getting file flags when the # filesystem doesn't support them