equal
deleted
inserted
replaced
223 self._branchcaches = branchmap.BranchMapCache() |
223 self._branchcaches = branchmap.BranchMapCache() |
224 self._revbranchcache = None |
224 self._revbranchcache = None |
225 self.encodepats = None |
225 self.encodepats = None |
226 self.decodepats = None |
226 self.decodepats = None |
227 self._transref = None |
227 self._transref = None |
|
228 self._dirstate = None |
228 |
229 |
229 def _restrictcapabilities(self, caps): |
230 def _restrictcapabilities(self, caps): |
230 caps = super(statichttprepository, self)._restrictcapabilities(caps) |
231 caps = super(statichttprepository, self)._restrictcapabilities(caps) |
231 return caps.difference([b"pushkey"]) |
232 return caps.difference([b"pushkey"]) |
232 |
233 |