(self, group)
| 197 | self.indentation = 0 |
| 198 | |
| 199 | def _break_one_group(self, group): |
| 200 | while group.breakables: |
| 201 | x = self.buffer.popleft() |
| 202 | self.output_width = x.output(self.output, self.output_width) |
| 203 | self.buffer_width -= x.width |
| 204 | while self.buffer and isinstance(self.buffer[0], Text): |
| 205 | x = self.buffer.popleft() |
| 206 | self.output_width = x.output(self.output, self.output_width) |
| 207 | self.buffer_width -= x.width |
| 208 | |
| 209 | def _break_outer_groups(self): |
| 210 | while self.max_width < self.output_width + self.buffer_width: |
no test coverage detected