(self, seq, width, pretty)
| 442 | class Breakable(Printable): |
| 443 | |
| 444 | def __init__(self, seq, width, pretty): |
| 445 | self.obj = seq |
| 446 | self.width = width |
| 447 | self.pretty = pretty |
| 448 | self.indentation = pretty.indentation |
| 449 | self.group = pretty.group_stack[-1] |
| 450 | self.group.breakables.append(self) |
| 451 | |
| 452 | def output(self, stream, output_width): |
| 453 | self.group.breakables.popleft() |
nothing calls this directly
no outgoing calls
no test coverage detected