(self, stream, output_width)
| 456 | self.width = 0 |
| 457 | |
| 458 | def output(self, stream, output_width): |
| 459 | for obj in self.objs: |
| 460 | stream.write(obj) |
| 461 | return output_width + self.width |
| 462 | |
| 463 | def add(self, obj, width): |
| 464 | self.objs.append(obj) |
no test coverage detected