marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.

REVISION SUMMARY
  This value is currently wrong, but at least it is now -obviously- wrong.

REPOSITORY
  rHG Mercurial

BRANCH
  default

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

AFFECTED FILES
  mercurial/revlogutils/revlogv0.py

CHANGE DETAILS

diff --git a/mercurial/revlogutils/revlogv0.py 
b/mercurial/revlogutils/revlogv0.py
--- a/mercurial/revlogutils/revlogv0.py
+++ b/mercurial/revlogutils/revlogv0.py
@@ -42,6 +42,7 @@
 
 class revlogoldindex(list):
     entry_size = INDEX_ENTRY_V0.size
+    null_item = (0, 0, 0, -1, -1, -1, -1, node.nullid)
 
     @property
     def nodemap(self):
@@ -89,7 +90,7 @@
 
     def __getitem__(self, i):
         if i == -1:
-            return (0, 0, 0, -1, -1, -1, -1, node.nullid)
+            return self.null_item
         return list.__getitem__(self, i)
 
     def pack_header(self, header):



To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to