(input, errors='strict')
| 12 | encode = oem_encode |
| 13 | |
| 14 | def decode(input, errors='strict'): |
| 15 | return oem_decode(input, errors, True) |
| 16 | |
| 17 | class IncrementalEncoder(codecs.IncrementalEncoder): |
| 18 | def encode(self, input, final=False): |
no outgoing calls
searching dependent graphs…