(self, stream, output_width)
| 430 | self.width = 0 |
| 431 | |
| 432 | def output(self, stream, output_width): |
| 433 | for obj in self.objs: |
| 434 | stream.write(obj) |
| 435 | return output_width + self.width |
| 436 | |
| 437 | def add(self, obj, width): |
| 438 | self.objs.append(obj) |
no test coverage detected