Mercurial > hg
changeset 19680:fc33fcfa08f2
commitablectx: move modified from workingctx
author | Sean Farley <sean.michael.farley@gmail.com> |
---|---|
date | Wed, 14 Aug 2013 16:14:58 -0500 |
parents | f21804f1582e |
children | cfc4ae65023f |
files | mercurial/context.py |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/context.py Wed Aug 14 16:09:45 2013 -0500 +++ b/mercurial/context.py Wed Aug 14 16:14:58 2013 -0500 @@ -970,6 +970,9 @@ def files(self): return sorted(self._status[0] + self._status[1] + self._status[2]) + def modified(self): + return self._status[0] + class workingctx(commitablectx): """A workingctx object makes access to data related to the current working directory convenient. @@ -996,8 +999,6 @@ p = p[:-1] return [changectx(self._repo, x) for x in p] - def modified(self): - return self._status[0] def added(self): return self._status[1] def removed(self):