diff options
author | Raymond Hettinger <python@rcn.com> | 2003-09-24 03:57:36 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-09-24 03:57:36 (GMT) |
commit | 9edae346dd664f63aa4d707b9090c9638fbc9198 (patch) | |
tree | c46994573316cca4cef3d7cedf0354681c60c86d /Lib/encodings/bz2_codec.py | |
parent | 3778f40389e27313c34ff539d33fe9304754a9c2 (diff) | |
download | cpython-9edae346dd664f63aa4d707b9090c9638fbc9198.zip cpython-9edae346dd664f63aa4d707b9090c9638fbc9198.tar.gz cpython-9edae346dd664f63aa4d707b9090c9638fbc9198.tar.bz2 |
Fix typo in the comments.
Diffstat (limited to 'Lib/encodings/bz2_codec.py')
-rw-r--r-- | Lib/encodings/bz2_codec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/encodings/bz2_codec.py b/Lib/encodings/bz2_codec.py index 3d1f75e..870474c 100644 --- a/Lib/encodings/bz2_codec.py +++ b/Lib/encodings/bz2_codec.py @@ -3,7 +3,7 @@ Unlike most of the other codecs which target Unicode, this codec will return Python string objects for both encode and decode. - Adapted by Raymond Hettinger from bz2_codec which was written + Adapted by Raymond Hettinger from zlib_codec.py which was written by Marc-Andre Lemburg (mal@lemburg.com). """ |