aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-04-13 17:08:51 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2014-04-13 17:08:51 +0300
commit9c5553e122303bb3e88f3867fadb08e03d08aed1 (patch)
tree087057e9653b6d87b9e668c2ac42dd10916c9a6f /Lib/encodings
parentRemove references to the obsolete Mac Carbon modules in the GUI (diff)
parentIssue #21171: Fixed undocumented filter API of the rot13 codec. (diff)
downloadcpython-9c5553e122303bb3e88f3867fadb08e03d08aed1.tar.gz
cpython-9c5553e122303bb3e88f3867fadb08e03d08aed1.tar.bz2
cpython-9c5553e122303bb3e88f3867fadb08e03d08aed1.zip
Issue #21171: Fixed undocumented filter API of the rot13 codec.
Patch by Berker Peksag.
Diffstat (limited to 'Lib/encodings')
-rwxr-xr-xLib/encodings/rot_13.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/encodings/rot_13.py b/Lib/encodings/rot_13.py
index 1f2f47bb34f..f0b4186dc87 100755
--- a/Lib/encodings/rot_13.py
+++ b/Lib/encodings/rot_13.py
@@ -106,7 +106,7 @@ rot13_map.update({
### Filter API
def rot13(infile, outfile):
- outfile.write(infile.read().encode('rot-13'))
+ outfile.write(codecs.encode(infile.read(), 'rot-13'))
if __name__ == '__main__':
import sys