D7486: locarepo: also fastpath `nullid` lookup in __getitem__

marmoute (Pierre-Yves David) phabricator at mercurial-scm.org
Sat Nov 23 08:03:44 EST 2019


marmoute updated this revision to Diff 18356.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7486?vs=18293&id=18356

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

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

AFFECTED FILES
  mercurial/localrepo.py

CHANGE DETAILS

diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py
--- a/mercurial/localrepo.py
+++ b/mercurial/localrepo.py
@@ -1531,7 +1531,7 @@
             ]
 
         # dealing with some special values
-        if changeid == b'null' or changeid == nullrev:
+        if changeid == b'null' or changeid == nullrev or changeid == nullid:
             return context.changectx(self, nullrev, nullid, False)
         if changeid == b'tip':
             node = self.changelog.tip()



To: marmoute, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list