(self, input, final=False)
| 33 | |
| 34 | class IncrementalDecoder(codecs.IncrementalDecoder): |
| 35 | def decode(self, input, final=False): |
| 36 | return quopri_decode(input, self.errors)[0] |
| 37 | |
| 38 | class StreamWriter(Codec, codecs.StreamWriter): |
| 39 | charbuffertype = bytes |
nothing calls this directly
no test coverage detected