Mercurial > public > mercurial-scm > hg
comparison mercurial/bundlerepo.py @ 34219: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 | f672d060a931 |
children | 0fe62d8bdd50 |
comparison
equal
deleted
inserted
replaced
34218:aa877860d4d7 | 34219:21fc747e1bc5 |
---|---|
162 # needs to override 'baserevision' and make more specific call here. | 162 # needs to override 'baserevision' and make more specific call here. |
163 return revlog.revlog.revision(self, nodeorrev, raw=True) | 163 return revlog.revlog.revision(self, nodeorrev, raw=True) |
164 | 164 |
165 def addrevision(self, text, transaction, link, p1=None, p2=None, d=None): | 165 def addrevision(self, text, transaction, link, p1=None, p2=None, d=None): |
166 raise NotImplementedError | 166 raise NotImplementedError |
167 def addgroup(self, revs, linkmapper, transaction): | 167 def addgroup(self, deltas, transaction, addrevisioncb=None): |
168 raise NotImplementedError | 168 raise NotImplementedError |
169 def strip(self, rev, minlink): | 169 def strip(self, rev, minlink): |
170 raise NotImplementedError | 170 raise NotImplementedError |
171 def checksize(self): | 171 def checksize(self): |
172 raise NotImplementedError | 172 raise NotImplementedError |