diff mercurial/pure/parsers.py @ 38850:6104b203bec8

index: replace insert(-1, e) method by append(e) method I want to make index[len(index) - 1] be the tip revision, not null revision as it is today. insert(-1, e) will then make little sense. Since insert() currently requires the first argument to be -1, it seems simpler to replace it by a method that allows insertion only at the end. Note that revlogoldindex already has this method (by virtue of extending list). Differential Revision: https://phab.mercurial-scm.org/D4021
author Martin von Zweigbergk <martinvonz@google.com>
date Wed, 01 Aug 2018 10:57:14 -0700
parents c0d411ea6639
children 781b2720d2ac
line wrap: on
line diff
--- a/mercurial/pure/parsers.py	Fri Jul 20 14:25:59 2018 -0700
+++ b/mercurial/pure/parsers.py	Wed Aug 01 10:57:14 2018 -0700
@@ -41,8 +41,7 @@
     def __len__(self):
         return self._lgt + len(self._extra) + 1
 
-    def insert(self, i, tup):
-        assert i == -1
+    def append(self, tup):
         self._extra.append(tup)
 
     def _fix_index(self, i):