comparison mercurial/unionrepo.py @ 34226:21fc747e1bc5

revlog: update signature of dummy addgroup() in bundlerepo and unionrepo Per c8b6ed51386b, 2f5c45fe3a3b and 00e3f909907f.
author Yuya Nishihara <yuya@tcha.org>
date Fri, 15 Sep 2017 23:58:45 +0900
parents 634997248c97
children 1541e1a8e87d
comparison
equal deleted inserted replaced
34225:aa877860d4d7 34226:21fc747e1bc5
124 # Exists for the same purpose as baserevision. 124 # Exists for the same purpose as baserevision.
125 return revlog.revlog.revdiff(self, rev1, rev2) 125 return revlog.revlog.revdiff(self, rev1, rev2)
126 126
127 def addrevision(self, text, transaction, link, p1=None, p2=None, d=None): 127 def addrevision(self, text, transaction, link, p1=None, p2=None, d=None):
128 raise NotImplementedError 128 raise NotImplementedError
129 def addgroup(self, revs, linkmapper, transaction): 129 def addgroup(self, deltas, transaction, addrevisioncb=None):
130 raise NotImplementedError 130 raise NotImplementedError
131 def strip(self, rev, minlink): 131 def strip(self, rev, minlink):
132 raise NotImplementedError 132 raise NotImplementedError
133 def checksize(self): 133 def checksize(self):
134 raise NotImplementedError 134 raise NotImplementedError