# HG changeset patch # User Sean Farley # Date 1376512188 18000 # Node ID 8120ea4b87f5e0be26924f99f0d14562b1e3fa15 # Parent 9d56a33590117e9af0fba80b16c0323b03094b9d commitablectx: move _buildflagfunc from workingctx diff -r 9d56a3359011 -r 8120ea4b87f5 mercurial/context.py --- 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)