(self, input, errors='strict')
| 72 | return uu_encode(input, errors) |
| 73 | |
| 74 | def decode(self, input, errors='strict'): |
| 75 | return uu_decode(input, errors) |
| 76 | |
| 77 | class IncrementalEncoder(codecs.IncrementalEncoder): |
| 78 | def encode(self, input, final=False): |
nothing calls this directly
no test coverage detected