##// END OF EJS Templates
setdiscovery: limit lines to 80 characters
Steven Brown -
r14206:2bf60f15 default
parent child Browse files
Show More
@@ -40,18 +40,24 b' class basedag(object):'
40 40 raise NotImplementedError()
41 41
42 42 def ancestorset(self, starts, stops=None):
43 '''set of all ancestors of starts (incl), but stop walk at stops (excl)'''
43 '''
44 set of all ancestors of starts (incl), but stop walk at stops (excl)
45 '''
44 46 raise NotImplementedError()
45 47
46 48 def descendantset(self, starts, stops=None):
47 '''set of all descendants of starts (incl), but stop walk at stops (excl)'''
49 '''
50 set of all descendants of starts (incl), but stop walk at stops (excl)
51 '''
48 52 return self.inverse().ancestorset(starts, stops)
49 53
50 54 def headsetofconnecteds(self, ixs):
51 '''subset of connected list of ixs so that no node has a descendant in it
55 '''
56 subset of connected list of ixs so that no node has a descendant in it
52 57
53 58 By "connected list" we mean that if an ancestor and a descendant are in
54 the list, then so is at least one path connecting them.'''
59 the list, then so is at least one path connecting them.
60 '''
55 61 raise NotImplementedError()
56 62
57 63 def externalize(self, ix):
@@ -82,8 +82,8 b' def findcommonheads(ui, local, remote,'
82 82 initialsamplesize=100,
83 83 fullsamplesize=200,
84 84 abortwhenunrelated=True):
85 '''Return a tuple (common, anyincoming, remoteheads) used to identify missing
86 nodes from or in remote.
85 '''Return a tuple (common, anyincoming, remoteheads) used to identify
86 missing nodes from or in remote.
87 87
88 88 shortcutlocal determines whether we try use direct access to localrepo if
89 89 remote is actually local.
@@ -106,8 +106,8 b' def findcommonheads(ui, local, remote,'
106 106 return [nullid], True, srvheadhashes
107 107 return [nullid], False, []
108 108
109 # start actual discovery (we note this before the next "if" for compatibility
110 # reasons)
109 # start actual discovery (we note this before the next "if" for
110 # compatibility reasons)
111 111 ui.status(_("searching for changes\n"))
112 112
113 113 srvheads = dag.internalizeall(srvheadhashes, filterunknown=True)
General Comments 0
You need to be logged in to leave comments. Login now