(self)
| 225 | self.buffer_width -= x.width |
| 226 | |
| 227 | def _break_outer_groups(self): |
| 228 | while self.max_width < self.output_width + self.buffer_width: |
| 229 | group = self.group_queue.deq() |
| 230 | if not group: |
| 231 | return |
| 232 | self._break_one_group(group) |
| 233 | |
| 234 | def text(self, obj): |
| 235 | """Add literal text to the output.""" |
no test coverage detected