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/rot_13.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/rot_13.py')
-rwxr-xr-x | Lib/encodings/rot_13.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/encodings/rot_13.py b/Lib/encodings/rot_13.py index fff9153..1f2f47b 100755 --- a/Lib/encodings/rot_13.py +++ b/Lib/encodings/rot_13.py @@ -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). """ |