Mercurial > public > mercurial-scm > hg
comparison mercurial/localrepo.py @ 14549:48ec0763afbb
check-code: catch misspellings of descendant
This word is fairly common in Mercurial, and easy to misspell.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Tue, 07 Jun 2011 17:02:54 -0500 |
parents | 52cbeb5a651b |
children | 68a43fdd7d80 |
comparison
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 |