Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Lib/idlelib/NEWS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Released on 2019-12-16?
======================================


bpo-38943: Fix autocomplete windows not always appearing on some
systems. Patch by Johnny Najera.

bpo-38944: Excape key now closes IDLE completion windows. Patch by
Johnny Najera.

Expand Down
1 change: 1 addition & 0 deletions Lib/idlelib/autocomplete_w.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ def winconfig_event(self, event):
# place acw above current line
new_y -= acw_height
acw.wm_geometry("+%d+%d" % (new_x, new_y))
acw.update_idletasks()

if platform.system().startswith('Windows'):
# See issue 15786. When on Windows platform, Tk will misbehave
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fix IDLE autocomplete windows not always appearing on some systems.
Patch by Johnny Najera.