(self, heading, encoding="utf8", errors="surrogateescape")
| 11 | |
| 12 | class Column(col_bytes.Column): |
| 13 | def __init__(self, heading, encoding="utf8", errors="surrogateescape"): |
| 14 | super().__init__(heading) |
| 15 | self.encoding_args = encoding, errors |
| 16 | |
| 17 | def Display(self, data): |
| 18 | return TDisplay(data, self.encoding_args) |