Skip to content
Snippets Groups Projects
Commit 3b1042ca authored by Boris Feld's avatar Boris Feld
Browse files

revlog: add a method to retrieve snapshot depth

Some snapshot property (eg: maximum size) will depend on their depth.
parent 07b82f55
No related branches found
No related tags found
No related merge requests found
......@@ -2108,6 +2108,12 @@
return False
return self.issnapshot(deltap)
def snapshotdepth(self, rev):
"""number of snapshot in the chain before this one"""
if not self.issnapshot(rev):
raise ProgrammingError('revision %d not a snapshot')
return len(self._deltachain(rev)[0]) - 1
def revdiff(self, rev1, rev2):
"""return or calculate a delta between two revisions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment