diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-03-14 00:54:30 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-03-14 00:54:30 (GMT) |
commit | e5cb836d4c481ad8ec6f5e0b611f7162c30a8abb (patch) | |
tree | 7de6ebfca2615f962c22f477116ba3638ebfcafc /Lib/encodings/zlib_codec.py | |
parent | ef04c59f53390c2664e496a7a1f16f327f329145 (diff) | |
download | cpython-e5cb836d4c481ad8ec6f5e0b611f7162c30a8abb.zip cpython-e5cb836d4c481ad8ec6f5e0b611f7162c30a8abb.tar.gz cpython-e5cb836d4c481ad8ec6f5e0b611f7162c30a8abb.tar.bz2 |
#7475: Remove references to '.transform' from transform codec docstrings.
Diffstat (limited to 'Lib/encodings/zlib_codec.py')
-rw-r--r-- | Lib/encodings/zlib_codec.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/encodings/zlib_codec.py b/Lib/encodings/zlib_codec.py index 4c81ca1..95908a4 100644 --- a/Lib/encodings/zlib_codec.py +++ b/Lib/encodings/zlib_codec.py @@ -1,7 +1,6 @@ """Python 'zlib_codec' Codec - zlib compression encoding. -This codec de/encodes from bytes to bytes and is therefore usable with -bytes.transform() and bytes.untransform(). +This codec de/encodes from bytes to bytes. Written by Marc-Andre Lemburg (mal@lemburg.com). """ |