comparison mercurial/repository.py @ 42723:2128c76c8970

rawdata: forward `rawdata` call on `manifestlog` This needs to be sent to the underlying `revlog` too.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Wed, 07 Aug 2019 22:08:04 +0200
parents d98ec36be808
children bbe71b5afd02
comparison
equal deleted inserted replaced
42722:c9f3f4c8999a 42723:2128c76c8970
1162 """Obtain the changeset revision number a revision is linked to.""" 1162 """Obtain the changeset revision number a revision is linked to."""
1163 1163
1164 def revision(node, _df=None, raw=False): 1164 def revision(node, _df=None, raw=False):
1165 """Obtain fulltext data for a node.""" 1165 """Obtain fulltext data for a node."""
1166 1166
1167 def rawdata(node, _df=None):
1168 """Obtain raw data for a node."""
1169
1167 def revdiff(rev1, rev2): 1170 def revdiff(rev1, rev2):
1168 """Obtain a delta between two revision numbers. 1171 """Obtain a delta between two revision numbers.
1169 1172
1170 The returned data is the result of ``bdiff.bdiff()`` on the raw 1173 The returned data is the result of ``bdiff.bdiff()`` on the raw
1171 revision data. 1174 revision data.