comparison mercurial/localrepo.py @ 8239:f802b4706a53

localrepo: corrected outdated comment
author Martin Geisler <mg@lazybytes.net>
date Tue, 28 Apr 2009 18:32:15 +0200
parents f795d24aebc3
children 99d7e2db8da8
comparison
equal deleted inserted replaced
8238:f795d24aebc3 8239:f802b4706a53
1666 # changesets are known. The recipient must know about all 1666 # changesets are known. The recipient must know about all
1667 # changesets required to reach the known heads from the null 1667 # changesets required to reach the known heads from the null
1668 # changeset. 1668 # changeset.
1669 has_cl_set, junk, junk = cl.nodesbetween(None, knownheads) 1669 has_cl_set, junk, junk = cl.nodesbetween(None, knownheads)
1670 junk = None 1670 junk = None
1671 # Transform the list into an ersatz set. 1671 # Transform the list into a set.
1672 has_cl_set = set(has_cl_set) 1672 has_cl_set = set(has_cl_set)
1673 else: 1673 else:
1674 # If there were no known heads, the recipient cannot be assumed to 1674 # If there were no known heads, the recipient cannot be assumed to
1675 # know about any changesets. 1675 # know about any changesets.
1676 has_cl_set = set() 1676 has_cl_set = set()