(self, input, errors, final)
| 23 | |
| 24 | class StreamReader(codecs.StreamReader): |
| 25 | def decode(self, input, errors, final): |
| 26 | return code_page_decode(cp, input, errors, final) |
| 27 | |
| 28 | return codecs.CodecInfo( |
| 29 | name=f'cp{cp}', |
nothing calls this directly
no test coverage detected