Lines Matching refs:errors
13 def hex_encode(input, errors='strict'):
14 assert errors == 'strict'
17 def hex_decode(input, errors='strict'):
18 assert errors == 'strict'
22 def encode(self, input, errors='strict'):
23 return hex_encode(input, errors)
24 def decode(self, input, errors='strict'):
25 return hex_decode(input, errors)
29 assert self.errors == 'strict'
34 assert self.errors == 'strict'