From patchwork Thu Sep 5 20:07:06 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [12,of,48,RFC] commitablectx: move _buildflagfunc from workingctx From: Sean Farley X-Patchwork-Id: 2350 Message-Id: To: mercurial-devel@selenic.com Date: Thu, 05 Sep 2013 15:07:06 -0500 # HG changeset patch # User Sean Farley # Date 1376512188 18000 # Wed Aug 14 15:29:48 2013 -0500 # Node ID b2af4914ffef7e865b2d0eff97c4de0afdbdb58b # Parent 4b7681f0c4a49fc5b8a4310b8e40d81c77c0a255 commitablectx: move _buildflagfunc from workingctx diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -863,23 +863,10 @@ 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. - 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 copiesget = self._repo.dirstate.copies().get @@ -908,10 +895,23 @@ return fl1 return '' # punt for conflicts 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) @propertycache