diff options
author | Marc-André Lemburg <mal@egenix.com> | 2001-09-20 10:33:38 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2001-09-20 10:33:38 (GMT) |
commit | 26e3b681b26c9978c819396e278f43d356d86f9e (patch) | |
tree | 7faccd060a50eb825f6a01e1750e71693af552e9 /Lib/encodings/uu_codec.py | |
parent | efc3a3af3b47223af3f642ca3bb2a7df3ebdc6d1 (diff) | |
download | cpython-26e3b681b26c9978c819396e278f43d356d86f9e.zip cpython-26e3b681b26c9978c819396e278f43d356d86f9e.tar.gz cpython-26e3b681b26c9978c819396e278f43d356d86f9e.tar.bz2 |
Patch #462635 by Andrew Kuchling correcting bugs in the new
codecs -- the self argument does matter for Python functions (it
does not for C functions which most other codecs use).
Diffstat (limited to 'Lib/encodings/uu_codec.py')
-rw-r--r-- | Lib/encodings/uu_codec.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/encodings/uu_codec.py b/Lib/encodings/uu_codec.py index 82e799c..6ef8369 100644 --- a/Lib/encodings/uu_codec.py +++ b/Lib/encodings/uu_codec.py @@ -94,9 +94,11 @@ def uu_decode(input,errors='strict'): class Codec(codecs.Codec): - encode = uu_encode - decode = uu_decode - + def encode(self,input,errors='strict'): + return uu_encode(input,errors) + def decode(self,input,errors='strict'): + return uu_decode(input,errors) + class StreamWriter(Codec,codecs.StreamWriter): pass |