(self, input, errors='strict')
| 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 | |
| 30 | class IncrementalEncoder(codecs.IncrementalEncoder): |
| 31 | def encode(self, input, final=False): |
no test coverage detected