D3403: revlog: make shortest() take a full binary nodeid (API)
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Tue Apr 17 16:29:55 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG44d1959acb3b: revlog: make shortest() take a full binary nodeid (API) (authored by martinvonz, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D3403?vs=8374&id=8375
REVISION DETAIL
https://phab.mercurial-scm.org/D3403
AFFECTED FILES
mercurial/revlog.py
mercurial/scmutil.py
CHANGE DETAILS
diff --git a/mercurial/scmutil.py b/mercurial/scmutil.py
--- a/mercurial/scmutil.py
+++ b/mercurial/scmutil.py
@@ -448,7 +448,7 @@
# _partialmatch() of filtered changelog could take O(len(repo)) time,
# which would be unacceptably slow. so we look for hash collision in
# unfiltered space, which means some hashes may be slightly longer.
- return repo.unfiltered().changelog.shortest(hex(node), minlength)
+ return repo.unfiltered().changelog.shortest(node, minlength)
def isrevsymbol(repo, symbol):
"""Checks if a symbol exists in the repo.
diff --git a/mercurial/revlog.py b/mercurial/revlog.py
--- a/mercurial/revlog.py
+++ b/mercurial/revlog.py
@@ -1500,8 +1500,8 @@
raise LookupError(id, self.indexfile, _('no match found'))
- def shortest(self, hexnode, minlength=1):
- """Find the shortest unambiguous prefix that matches hexnode."""
+ def shortest(self, node, minlength=1):
+ """Find the shortest unambiguous prefix that matches node."""
def isvalid(test):
try:
if self._partialmatch(test) is None:
@@ -1523,6 +1523,7 @@
# single 'ff...' match
return True
+ hexnode = hex(node)
shortest = hexnode
startlength = max(6, minlength)
length = startlength
To: martinvonz, indygreg, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list