This has happened on some versions of Ubuntu.
======================================
+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.
# 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
--- /dev/null
+Fix IDLE autocomplete windows not always appearing on some systems.
+Patch by Johnny Najera.