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