bpo-39600: Adjust code, add idlelib/NEWS item (GH-18449)

Complete previous patch.
This commit is contained in:
Terry Jan Reedy 2020-02-10 20:08:58 -05:00 committed by GitHub
parent 038770edc4
commit 96ce227067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -3,6 +3,8 @@ Released on 2020-10-05?
======================================
bpo-39600: Remove duplicate font names from configuration list.
bpo-38792: Close a shell calltip if a :exc:`KeyboardInterrupt`
or shell restart occurs. Patch by Zackery Spytz.

View File

@ -606,10 +606,8 @@ class FontPage(Frame):
font_size = configured_font[1]
font_bold = configured_font[2]=='bold'
# Set editor font selection list and font_name.
fonts = tkFont.families(self)
# remove duplicated names and sort
fonts = sorted(set(fonts))
# Set sorted no-duplicate editor font selection list and font_name.
fonts = sorted(set(tkFont.families(self)))
for font in fonts:
self.fontlist.insert(END, font)
self.font_name.set(font_name)