| 22 | print(' '.join('%10s' % d for d in rowdata)) |
| 23 | |
| 24 | class CSVTableFormatter(TableFormatter): |
| 25 | def headings(self, headers): |
| 26 | print(','.join(headers)) |
| 27 | |
| 28 | def row(self, rowdata): |
| 29 | print(','.join(str(d) for d in rowdata)) |
| 30 | |
| 31 | class HTMLTableFormatter(TableFormatter): |
| 32 | def headings(self, headers): |
nothing calls this directly
no outgoing calls
no test coverage detected