Fix passing errors to the encoder and decoder functions.

This commit is contained in:
Walter Dörwald 2006-06-13 12:02:12 +00:00
parent aabc5f6f2f
commit 6b6e2bb8b1
2 changed files with 4 additions and 4 deletions

View file

@ -102,11 +102,11 @@ class Codec(codecs.Codec):
class IncrementalEncoder(codecs.IncrementalEncoder):
def encode(self, input, final=False):
return uu_encode(input, errors)[0]
return uu_encode(input, self.errors)[0]
class IncrementalDecoder(codecs.IncrementalDecoder):
def decode(self, input, final=False):
return uu_decode(input, errors)[0]
return uu_decode(input, self.errors)[0]
class StreamWriter(Codec,codecs.StreamWriter):
pass