Mercurial > hg
changeset 19683:6336f35ed77d
commitablectx: move deleted from workingctx
author | Sean Farley <sean.michael.farley@gmail.com> |
---|---|
date | Wed, 14 Aug 2013 16:21:55 -0500 |
parents | 42ffc7f31acf |
children | 36cd2a7fa3f7 |
files | mercurial/context.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/context.py Wed Aug 14 16:15:29 2013 -0500 +++ b/mercurial/context.py Wed Aug 14 16:21:55 2013 -0500 @@ -976,6 +976,8 @@ return self._status[1] def removed(self): return self._status[2] + def deleted(self): + return self._status[3] class workingctx(commitablectx): """A workingctx object makes access to data related to @@ -1003,8 +1005,6 @@ p = p[:-1] return [changectx(self._repo, x) for x in p] - def deleted(self): - return self._status[3] def unknown(self): assert self._unknown is not None # must call status first return self._unknown