(self, depth)
| 464 | class Group(Printable): |
| 465 | |
| 466 | def __init__(self, depth): |
| 467 | self.depth = depth |
| 468 | self.breakables = deque() |
| 469 | self.want_break = False |
| 470 | |
| 471 | |
| 472 | class GroupQueue(object): |
nothing calls this directly
no outgoing calls
no test coverage detected