diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2003-06-06 21:58:38 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2003-06-06 21:58:38 (GMT) |
commit | 260cb9034c861fa159f26fba8679ac265af47109 (patch) | |
tree | b71f9585e1e49b9a892587748b35bbaeea9881cc /Lib/idlelib/FileList.py | |
parent | b268f0345956603cfae226946b80060b6fc28be1 (diff) | |
download | cpython-260cb9034c861fa159f26fba8679ac265af47109.zip cpython-260cb9034c861fa159f26fba8679ac265af47109.tar.gz cpython-260cb9034c861fa159f26fba8679ac265af47109.tar.bz2 |
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
Diffstat (limited to 'Lib/idlelib/FileList.py')
-rw-r--r-- | Lib/idlelib/FileList.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/idlelib/FileList.py b/Lib/idlelib/FileList.py index 7a46afa..4e08e70 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() |