comparison mercurial/repo.py @ 17191:5884812686f7

peer: introduce peer methods to prepare for peer classes This introduces a peer method into all repository classes, which currently simply returns self. It also changes hg.repository so it now raises an exception if the supplied paths does not resolve to a localrepo or descendant. Finally, all call sites are changed to use the peer and local methods as appropriate, where peer is used whenever the code is dealing with a remote repository (even if it's on local disk).
author Sune Foldager <cryo@cyanite.org>
date Fri, 13 Jul 2012 21:46:53 +0200
parents d747774ca9da
children
comparison
equal deleted inserted replaced
17190:d99d0b559084 17191:5884812686f7
31 'support the %r capability') % (purpose, name)) 31 'support the %r capability') % (purpose, name))
32 32
33 def local(self): 33 def local(self):
34 return False 34 return False
35 35
36 def peer(self):
37 return self
38
36 def cancopy(self): 39 def cancopy(self):
37 return self.local() 40 return self.local()
38 41
39 def close(self): 42 def close(self):
40 pass 43 pass