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/zlib_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/zlib_codec.py')
-rw-r--r-- | Lib/encodings/zlib_codec.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/encodings/zlib_codec.py b/Lib/encodings/zlib_codec.py index 035bb04..d9f7d04 100644 --- a/Lib/encodings/zlib_codec.py +++ b/Lib/encodings/zlib_codec.py @@ -45,8 +45,10 @@ def zlib_decode(input,errors='strict'): class Codec(codecs.Codec): - encode = zlib_encode - decode = zlib_decode + def encode(self, input, errors='strict'): + return zlib_encode(input, errors) + def decode(self, input, errors='strict'): + return zlib_decode(input, errors) class StreamWriter(Codec,codecs.StreamWriter): pass |