#7475: Remove references to '.transform' from transform codec docstrings.

This commit is contained in:
R David Murray 2014-03-13 20:54:30 -04:00
parent ef04c59f53
commit e5cb836d4c
6 changed files with 6 additions and 12 deletions

View File

@ -1,7 +1,6 @@
"""Python 'base64_codec' Codec - base64 content transfer encoding. """Python 'base64_codec' Codec - base64 content transfer encoding.
This codec de/encodes from bytes to bytes and is therefore usable with This codec de/encodes from bytes to bytes.
bytes.transform() and bytes.untransform().
Written by Marc-Andre Lemburg (mal@lemburg.com). Written by Marc-Andre Lemburg (mal@lemburg.com).
""" """

View File

@ -1,7 +1,6 @@
"""Python 'hex_codec' Codec - 2-digit hex content transfer encoding. """Python 'hex_codec' Codec - 2-digit hex content transfer encoding.
This codec de/encodes from bytes to bytes and is therefore usable with This codec de/encodes from bytes to bytes.
bytes.transform() and bytes.untransform().
Written by Marc-Andre Lemburg (mal@lemburg.com). Written by Marc-Andre Lemburg (mal@lemburg.com).
""" """

View File

@ -1,7 +1,6 @@
"""Codec for quoted-printable encoding. """Codec for quoted-printable encoding.
This codec de/encodes from bytes to bytes and is therefore usable with This codec de/encodes from bytes to bytes.
bytes.transform() and bytes.untransform().
""" """
import codecs import codecs

View File

@ -1,8 +1,7 @@
#!/usr/bin/env python #!/usr/bin/env python
""" Python Character Mapping Codec for ROT13. """ Python Character Mapping Codec for ROT13.
This codec de/encodes from str to str and is therefore usable with This codec de/encodes from str to str.
str.transform() and str.untransform().
Written by Marc-Andre Lemburg (mal@lemburg.com). Written by Marc-Andre Lemburg (mal@lemburg.com).
""" """

View File

@ -1,7 +1,6 @@
"""Python 'uu_codec' Codec - UU content transfer encoding. """Python 'uu_codec' Codec - UU content transfer encoding.
This codec de/encodes from bytes to bytes and is therefore usable with This codec de/encodes from bytes to bytes.
bytes.transform() and bytes.untransform().
Written by Marc-Andre Lemburg (mal@lemburg.com). Some details were Written by Marc-Andre Lemburg (mal@lemburg.com). Some details were
adapted from uu.py which was written by Lance Ellinghouse and adapted from uu.py which was written by Lance Ellinghouse and

View File

@ -1,7 +1,6 @@
"""Python 'zlib_codec' Codec - zlib compression encoding. """Python 'zlib_codec' Codec - zlib compression encoding.
This codec de/encodes from bytes to bytes and is therefore usable with This codec de/encodes from bytes to bytes.
bytes.transform() and bytes.untransform().
Written by Marc-Andre Lemburg (mal@lemburg.com). Written by Marc-Andre Lemburg (mal@lemburg.com).
""" """