Merge with 3.4

This commit is contained in:
Terry Jan Reedy 2015-09-23 03:45:33 -04:00
commit e8509556c3
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):