diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-23 07:45:49 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-23 07:45:49 (GMT) |
commit | 2e02348c7eae8844877b9fe44113e46c443fad77 (patch) | |
tree | feced1525b074708e52960d59c386b303c5f7269 | |
parent | 3766ee51620661a8d491730bd288b37ad3835280 (diff) | |
parent | e8509556c396013abb465ffb766162c51164d9b6 (diff) | |
download | cpython-2e02348c7eae8844877b9fe44113e46c443fad77.zip cpython-2e02348c7eae8844877b9fe44113e46c443fad77.tar.gz cpython-2e02348c7eae8844877b9fe44113e46c443fad77.tar.bz2 |
Merge with 3.5
-rw-r--r-- | Lib/idlelib/help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/help.py b/Lib/idlelib/help.py index a134bd8..731b334 100644 --- a/Lib/idlelib/help.py +++ b/Lib/idlelib/help.py @@ -234,7 +234,7 @@ def copy_strip(): with open(src, 'rb') as inn,\ open(dst, 'wb') as out: for line in inn: - out.write(line.rstrip() + '\n') + out.write(line.rstrip() + b'\n') print('idle.html copied to help.html') def show_idlehelp(parent): |