Mercurial > hg-stable
diff mercurial/revlog.py @ 42988:33532939c667
revlog: add a `sidedata` parameters to addrevision
If we want to eventually store sidedata we need to be able to pass them along.
Differential Revision: https://phab.mercurial-scm.org/D6814
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Tue, 03 Sep 2019 23:51:34 +0200 |
parents | bd5858c28bbe |
children | 36a0a1951d64 |
line wrap: on
line diff
--- a/mercurial/revlog.py Wed Sep 04 00:34:03 2019 +0200 +++ b/mercurial/revlog.py Tue Sep 03 23:51:34 2019 +0200 @@ -1816,7 +1816,8 @@ """ def addrevision(self, text, transaction, link, p1, p2, cachedelta=None, - node=None, flags=REVIDX_DEFAULT_FLAGS, deltacomputer=None): + node=None, flags=REVIDX_DEFAULT_FLAGS, deltacomputer=None, + sidedata=None): """add a revision to the log text - the revision data to add @@ -1835,6 +1836,9 @@ raise error.RevlogError(_("attempted to add linkrev -1 to %s") % self.indexfile) + if sidedata is None: + sidedata = {} + if flags: node = node or self.hash(text, p1, p2)