Lines Matching refs:errors
13 def hex_encode(input,errors='strict'):
18 errors defines the error handling to apply. It defaults to
23 assert errors == 'strict'
27 def hex_decode(input,errors='strict'):
36 errors defines the error handling to apply. It defaults to
41 assert errors == 'strict'
47 def encode(self, input,errors='strict'):
48 return hex_encode(input,errors)
49 def decode(self, input,errors='strict'):
50 return hex_decode(input,errors)
54 assert self.errors == 'strict'
59 assert self.errors == 'strict'