Merge with 3.5

This commit is contained in:
Terry Jan Reedy 2015-09-23 03:45:49 -04:00
commit 2e02348c7e
1 changed files with 1 additions and 1 deletions

View File

@ -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):