Lines Matching refs:errors
14 def zlib_encode(input,errors='strict'): argument
24 assert errors == 'strict'
28 def zlib_decode(input,errors='strict'): argument
42 assert errors == 'strict'
48 def encode(self, input, errors='strict'): argument
49 return zlib_encode(input, errors)
50 def decode(self, input, errors='strict'): argument
51 return zlib_decode(input, errors)
54 def __init__(self, errors='strict'): argument
55 assert errors == 'strict'
56 self.errors = errors
70 def __init__(self, errors='strict'): argument
71 assert errors == 'strict'
72 self.errors = errors