diff options
-rw-r--r-- | Lib/idlelib/WindowList.py | 4 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/Lib/idlelib/WindowList.py b/Lib/idlelib/WindowList.py index 761e015..bc74348 100644 --- a/Lib/idlelib/WindowList.py +++ b/Lib/idlelib/WindowList.py @@ -26,9 +26,9 @@ class WindowList: title = window.get_title() except TclError: continue - list.append((title, window)) + list.append((title, key, window)) list.sort() - for title, window in list: + for title, key, window in list: menu.add_command(label=title, command=window.wakeup) def register_callback(self, callback): @@ -24,6 +24,9 @@ Core and Builtins Library ------- +- Issue #4455: IDLE failed to display the windows list when two windows have + the same title. + - Issue #3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception. |