(self)
| 207 | self.buffer_width -= x.width |
| 208 | |
| 209 | def _break_outer_groups(self): |
| 210 | while self.max_width < self.output_width + self.buffer_width: |
| 211 | group = self.group_queue.deq() |
| 212 | if not group: |
| 213 | return |
| 214 | self._break_one_group(group) |
| 215 | |
| 216 | def text(self, obj): |
| 217 | """Add literal text to the output.""" |
no test coverage detected