(self, input, errors='strict')
| 19 | |
| 20 | class StreamWriter(codecs.StreamWriter): |
| 21 | def encode(self, input, errors='strict'): |
| 22 | return code_page_encode(cp, input, errors) |
| 23 | |
| 24 | class StreamReader(codecs.StreamReader): |
| 25 | def decode(self, input, errors, final): |
nothing calls this directly
no test coverage detected