| 488 | |
| 489 | |
| 490 | class Group(Printable): |
| 491 | |
| 492 | def __init__(self, depth): |
| 493 | self.depth = depth |
| 494 | self.breakables = deque() |
| 495 | self.want_break = False |
| 496 | |
| 497 | |
| 498 | class GroupQueue: |
no outgoing calls
no test coverage detected
searching dependent graphs…