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