mercurial/localrepo.py
changeset 14549 48ec0763afbb
parent 14536 52cbeb5a651b
child 14603 68a43fdd7d80
equal deleted inserted replaced
14548:cd1a01550ca2 14549:48ec0763afbb
  1454             for node in nodes:
  1454             for node in nodes:
  1455                 self.ui.debug("%s\n" % hex(node))
  1455                 self.ui.debug("%s\n" % hex(node))
  1456 
  1456 
  1457     def changegroupsubset(self, bases, heads, source):
  1457     def changegroupsubset(self, bases, heads, source):
  1458         """Compute a changegroup consisting of all the nodes that are
  1458         """Compute a changegroup consisting of all the nodes that are
  1459         descendents of any of the bases and ancestors of any of the heads.
  1459         descendants of any of the bases and ancestors of any of the heads.
  1460         Return a chunkbuffer object whose read() method will return
  1460         Return a chunkbuffer object whose read() method will return
  1461         successive changegroup chunks.
  1461         successive changegroup chunks.
  1462 
  1462 
  1463         It is fairly complex as determining which filenodes and which
  1463         It is fairly complex as determining which filenodes and which
  1464         manifest nodes need to be included for the changeset to be complete
  1464         manifest nodes need to be included for the changeset to be complete