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