diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2021-09-15 07:13:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-15 07:13:23 (GMT) |
commit | 1afc7b3219b24c951bb4e6b7e1ead904228de074 (patch) | |
tree | d21a3bafaee5ea8f55046e673c11a538ca110258 /Lib/idlelib/autocomplete_w.py | |
parent | 369bf949ccbb689cd4638b29b4c0c12db79b927c (diff) | |
download | cpython-1afc7b3219b24c951bb4e6b7e1ead904228de074.zip cpython-1afc7b3219b24c951bb4e6b7e1ead904228de074.tar.gz cpython-1afc7b3219b24c951bb4e6b7e1ead904228de074.tar.bz2 |
bpo-45193: Restore IDLE completion boxes on Ubuntu (GH-28343)
The line that should not have been needed on macOS tk 8.6.8 but was,
should not be a problem on Ubuntu, but is. It is not needed on macOS
tk 8.6.11, installed with 3.10. Disable it but leave it for
now in case some system needs it.
Diffstat (limited to 'Lib/idlelib/autocomplete_w.py')
-rw-r--r-- | Lib/idlelib/autocomplete_w.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/autocomplete_w.py b/Lib/idlelib/autocomplete_w.py index 13ff60a..0f835a9 100644 --- a/Lib/idlelib/autocomplete_w.py +++ b/Lib/idlelib/autocomplete_w.py @@ -206,7 +206,7 @@ class AutoCompleteWindow: scrollbar.config(command=listbox.yview) scrollbar.pack(side=RIGHT, fill=Y) listbox.pack(side=LEFT, fill=BOTH, expand=True) - acw.update_idletasks() # Need for tk8.6.8 on macOS: #40128. + #acw.update_idletasks() # Need for tk8.6.8 on macOS: #40128. acw.lift() # work around bug in Tk 8.5.18+ (issue #24570) # Initialize the listbox selection |