(cls, fmt, data, extra)
| 807 | |
| 808 | @classmethod |
| 809 | def _render_data(cls, fmt, data, extra): |
| 810 | if not data: |
| 811 | # XXX There should be some! Forward? |
| 812 | yield '???' |
| 813 | else: |
| 814 | yield from cls._format_data(fmt, data, extra) |
| 815 | |
| 816 | @classmethod |
| 817 | def _render_data_row_item(cls, colname, data, extra): |
nothing calls this directly
no test coverage detected