equal
deleted
inserted
replaced
347 |
347 |
348 def capabilities(self): |
348 def capabilities(self): |
349 return self._caps |
349 return self._caps |
350 |
350 |
351 def clonebundles(self): |
351 def clonebundles(self): |
352 return self._repo.tryread(bundlecaches.CB_MANIFEST_FILE) |
352 return bundlecaches.get_manifest(self._repo) |
353 |
353 |
354 def debugwireargs(self, one, two, three=None, four=None, five=None): |
354 def debugwireargs(self, one, two, three=None, four=None, five=None): |
355 """Used to test argument passing over the wire""" |
355 """Used to test argument passing over the wire""" |
356 return b"%s %s %s %s %s" % ( |
356 return b"%s %s %s %s %s" % ( |
357 one, |
357 one, |