| 28 | print(' '.join('%10s' % d for d in rowdata)) |
| 29 | |
| 30 | class CSVTableFormatter(TableFormatter): |
| 31 | def headings(self, headers): |
| 32 | print(','.join(headers)) |
| 33 | |
| 34 | def row(self, rowdata): |
| 35 | print(','.join(str(d) for d in rowdata)) |
| 36 | |
| 37 | class HTMLTableFormatter(TableFormatter): |
| 38 | def headings(self, headers): |
nothing calls this directly
no outgoing calls
no test coverage detected