(self, group)
| 215 | self.indentation = 0 |
| 216 | |
| 217 | def _break_one_group(self, group): |
| 218 | while group.breakables: |
| 219 | x = self.buffer.popleft() |
| 220 | self.output_width = x.output(self.output, self.output_width) |
| 221 | self.buffer_width -= x.width |
| 222 | while self.buffer and isinstance(self.buffer[0], Text): |
| 223 | x = self.buffer.popleft() |
| 224 | self.output_width = x.output(self.output, self.output_width) |
| 225 | self.buffer_width -= x.width |
| 226 | |
| 227 | def _break_outer_groups(self): |
| 228 | while self.max_width < self.output_width + self.buffer_width: |
no test coverage detected