Lines Matching full:errors
15 def bz2_encode(input, errors='strict'): argument
16 assert errors == 'strict'
19 def bz2_decode(input, errors='strict'): argument
20 assert errors == 'strict'
24 def encode(self, input, errors='strict'): argument
25 return bz2_encode(input, errors)
26 def decode(self, input, errors='strict'): argument
27 return bz2_decode(input, errors)
30 def __init__(self, errors='strict'): argument
31 assert errors == 'strict'
32 self.errors = errors
46 def __init__(self, errors='strict'): argument
47 assert errors == 'strict'
48 self.errors = errors