D6810: revlog: use the new sidedata map return in the sidedata method

marmoute (Pierre-Yves David) phabricator at mercurial-scm.org
Mon Sep 9 21:23:59 UTC 2019


marmoute updated this revision to Diff 16476.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D6810?vs=16415&id=16476

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D6810/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D6810

AFFECTED FILES
  mercurial/revlog.py

CHANGE DETAILS

diff --git a/mercurial/revlog.py b/mercurial/revlog.py
--- a/mercurial/revlog.py
+++ b/mercurial/revlog.py
@@ -1623,8 +1623,8 @@
         mapping object will likely be used in the future for a more
         efficient/lazy code.
         """
-        # XXX will actualy return data once storage is implemented.
-        return {}
+        text, sidemeta = self._revision(nodeorrev, _df)[1]
+        return sidemeta
 
     def _revisiondata(self, nodeorrev, _df=None, raw=False):
         # deal with <nodeorrev> argument type



To: marmoute, yuja, durin42, indygreg, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list