From 260cb9034c861fa159f26fba8679ac265af47109 Mon Sep 17 00:00:00 2001 From: "Kurt B. Kaiser" Date: Fri, 6 Jun 2003 21:58:38 +0000 Subject: 1. Update WindowList registry when filename changes so that Window menu updates. 2. Display Python Shell window in Window menu 3. Remove some dead code in FileList.py M EditorWindow.py M FileList.py M WindowList.py --- Lib/idlelib/FileList.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Lib/idlelib/FileList.py') diff --git a/Lib/idlelib/FileList.py b/Lib/idlelib/FileList.py index 7a46afaa02..4e08e705d6 100644 --- a/Lib/idlelib/FileList.py +++ b/Lib/idlelib/FileList.py @@ -61,10 +61,6 @@ class FileList: def new(self, filename=None): return self.EditorWindow(self, filename) - def new_callback(self, event): - self.new() - return "break" - def close_all_callback(self, event): for edit in self.inversedict.keys(): reply = edit.close() -- cgit v1.2.1