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).
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 @@
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