]> granicus.if.org Git - python/commitdiff
#7475: Remove references to '.transform' from transform codec docstrings.
authorR David Murray <rdmurray@bitdance.com>
Fri, 14 Mar 2014 00:54:30 +0000 (20:54 -0400)
committerR David Murray <rdmurray@bitdance.com>
Fri, 14 Mar 2014 00:54:30 +0000 (20:54 -0400)
Lib/encodings/base64_codec.py
Lib/encodings/hex_codec.py
Lib/encodings/quopri_codec.py
Lib/encodings/rot_13.py
Lib/encodings/uu_codec.py
Lib/encodings/zlib_codec.py

index 881d1ba0beeb5983f64f54d26ac60ab1dc0fc5f8..8e7703b3b6072d644f9ea000b1a2737f990d6f95 100644 (file)
@@ -1,7 +1,6 @@
 """Python 'base64_codec' Codec - base64 content transfer 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).
 """
index f2ed0a7658e23eb68f53bcd4440d785651a05d74..9fb1072804456a36469dd527c4c713b56e614fe3 100644 (file)
@@ -1,7 +1,6 @@
 """Python 'hex_codec' Codec - 2-digit hex content transfer 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).
 """
index 70f708379381fc65611fe723104f46961c23610f..0533dbe4e7b2abd7eceddc1e6ffb71fa444ea1e8 100644 (file)
@@ -1,7 +1,6 @@
 """Codec for quoted-printable 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.
 """
 
 import codecs
index fff9153b4c6344871cd5747c5475ea95f5b4b80a..1f2f47bb34f32b7ab5c42e45bf8df34cdabac68e 100755 (executable)
@@ -1,8 +1,7 @@
 #!/usr/bin/env python
 """ Python Character Mapping Codec for ROT13.
 
-This codec de/encodes from str to str and is therefore usable with
-str.transform() and str.untransform().
+This codec de/encodes from str to str.
 
 Written by Marc-Andre Lemburg (mal@lemburg.com).
 """
index e3269e40cd306e1cb42586af87e7cde2d2115a48..14540950af6a8446c591ef92275258f3c5b19acd 100644 (file)
@@ -1,7 +1,6 @@
 """Python 'uu_codec' Codec - UU content transfer 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). Some details were
 adapted from uu.py which was written by Lance Ellinghouse and
index 4c81ca115a7b5a0b3ebfe0a65bf8a2d2f204ab8a..95908a4b4a13a1db70763974cf714d01b25d0ceb 100644 (file)
@@ -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).
 """