Mercurial > hg-stable
changeset 19669:8120ea4b87f5
commitablectx: move _buildflagfunc from workingctx
author | Sean Farley <sean.michael.farley@gmail.com> |
---|---|
date | Wed, 14 Aug 2013 15:29:48 -0500 |
parents | 9d56a3359011 |
children | 6ac735fbea50 |
files | mercurial/context.py |
diffstat | 1 files changed, 13 insertions(+), 13 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/context.py Wed Aug 14 15:29:09 2013 -0500 +++ b/mercurial/context.py Wed Aug 14 15:29:48 2013 -0500 @@ -865,19 +865,6 @@ 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. - date - any valid date string or (unixtime, offset), or None. - user - username string, or None. - extra - a dictionary of extra values, or None. - changes - a list of file lists as returned by localrepo.status() - or None to use the repository status. - """ - def __init__(self, repo, text="", user=None, date=None, extra=None, - changes=None): - super(workingctx, self).__init__(repo, text, user, date, extra, changes) - def _buildflagfunc(self): # Create a fallback function for getting file flags when the # filesystem doesn't support them @@ -910,6 +897,19 @@ return func +class workingctx(commitablectx): + """A workingctx object makes access to data related to + the current working directory convenient. + date - any valid date string or (unixtime, offset), or None. + user - username string, or None. + extra - a dictionary of extra values, or None. + changes - a list of file lists as returned by localrepo.status() + or None to use the repository status. + """ + def __init__(self, repo, text="", user=None, date=None, extra=None, + changes=None): + super(workingctx, self).__init__(repo, text, user, date, extra, changes) + @propertycache def _flagfunc(self): return self._repo.dirstate.flagfunc(self._buildflagfunc)