(self, input, final=False)
| 80 | |
| 81 | class IncrementalDecoder(codecs.IncrementalDecoder): |
| 82 | def decode(self, input, final=False): |
| 83 | return uu_decode(input, self.errors)[0] |
| 84 | |
| 85 | class StreamWriter(Codec, codecs.StreamWriter): |
| 86 | charbuffertype = bytes |
nothing calls this directly
no test coverage detected