(self, input, errors='strict')
| 20 | |
| 21 | class Codec(codecs.Codec): |
| 22 | def encode(self, input, errors='strict'): |
| 23 | return zlib_encode(input, errors) |
| 24 | def decode(self, input, errors='strict'): |
| 25 | return zlib_decode(input, errors) |
| 26 |
nothing calls this directly
no test coverage detected