diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2020-02-11 01:08:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-11 01:08:58 (GMT) |
commit | 96ce22706735779cf8cc46eaaa5ac61359364b5a (patch) | |
tree | e54a0386757f346642d4dc358dd583b6040fb4c7 | |
parent | 038770edc4680e9a3dc39bacb35a8358034fb901 (diff) | |
download | cpython-96ce22706735779cf8cc46eaaa5ac61359364b5a.zip cpython-96ce22706735779cf8cc46eaaa5ac61359364b5a.tar.gz cpython-96ce22706735779cf8cc46eaaa5ac61359364b5a.tar.bz2 |
bpo-39600: Adjust code, add idlelib/NEWS item (GH-18449)
Complete previous patch.
-rw-r--r-- | Lib/idlelib/NEWS.txt | 2 | ||||
-rw-r--r-- | Lib/idlelib/configdialog.py | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index d57ba7e..8381209 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -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. diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py index 7b844f0..9d5c2cd 100644 --- a/Lib/idlelib/configdialog.py +++ b/Lib/idlelib/configdialog.py @@ -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) |