Home | History | Annotate | Download | only in coverage

Lines Matching defs:arcs

210     def arcs(self):
211 """Get information about the arcs available in the code.
224 arcs = expensive(arcs)
234 for l1, l2 in self.arcs():
242 # Arcs to excluded lines shouldn't count.
527 """Find the executable arcs in the code.
583 arcs = set()
593 arcs.add((chunk.line, exit_line))
595 arcs.add((-1, line))
597 return arcs
612 """Get the set of all arcs in this code object and its children.
617 arcs = set()
619 arcs.update(bp._arcs())
621 return arcs