##// END OF EJS Templates
dagutil: fix id/ix typos in docstrings
Mike Edgar -
r23216:4e5ac4a3 default
parent child Browse files
Show More
@@ -25,7 +25,7 class basedag(object):
25 25 self._inverse = None
26 26
27 27 def nodeset(self):
28 '''set of all node idxs'''
28 '''set of all node ixs'''
29 29 raise NotImplementedError
30 30
31 31 def heads(self):
@@ -77,7 +77,7 class basedag(object):
77 77 return self._internalize(id)
78 78
79 79 def internalizeall(self, ids, filterunknown=False):
80 '''return a list of (or set if given a set) of node ids'''
80 '''return a list of (or set if given a set) of node ixs'''
81 81 ixs = self._internalizeall(ids, filterunknown)
82 82 if isinstance(ids, set):
83 83 return set(ixs)
General Comments 0
You need to be logged in to leave comments. Login now