(input, errors='strict')
| 7 | return code_page_encode(cp, input, errors) |
| 8 | |
| 9 | def decode(input, errors='strict'): |
| 10 | return code_page_decode(cp, input, errors, True) |
| 11 | |
| 12 | class IncrementalEncoder(codecs.IncrementalEncoder): |
| 13 | def encode(self, input, final=False): |
nothing calls this directly
no test coverage detected