(self, input, errors='strict')
| 23 | |
| 24 | class Codec(codecs.Codec): |
| 25 | def encode(self, input, errors='strict'): |
| 26 | return quopri_encode(input, errors) |
| 27 | def decode(self, input, errors='strict'): |
| 28 | return quopri_decode(input, errors) |
| 29 |
no test coverage detected