mercurial/unionrepo.py
changeset 48946 642e31cb55f0
parent 48875 6000f5b25c9b
child 49753 ff7134e03629
equal deleted inserted replaced
48945:55d132525155 48946:642e31cb55f0
   207 class unionpeer(localrepo.localpeer):
   207 class unionpeer(localrepo.localpeer):
   208     def canpush(self):
   208     def canpush(self):
   209         return False
   209         return False
   210 
   210 
   211 
   211 
   212 class unionrepository(object):
   212 class unionrepository:
   213     """Represents the union of data in 2 repositories.
   213     """Represents the union of data in 2 repositories.
   214 
   214 
   215     Instances are not usable if constructed directly. Use ``instance()``
   215     Instances are not usable if constructed directly. Use ``instance()``
   216     or ``makeunionrepository()`` to create a usable instance.
   216     or ``makeunionrepository()`` to create a usable instance.
   217     """
   217     """