diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-05-26 21:18:59 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-05-26 21:18:59 (GMT) |
commit | afbca49cbec2ac9fcecffc1d25b31e7afb8ae159 (patch) | |
tree | 74e352ae123ce4e9e53734ff9e89ad1bc54e2301 /Lib | |
parent | 220a9fbde44bb4d3d302a6ef8e1133b5209ec9f9 (diff) | |
download | cpython-afbca49cbec2ac9fcecffc1d25b31e7afb8ae159.zip cpython-afbca49cbec2ac9fcecffc1d25b31e7afb8ae159.tar.gz cpython-afbca49cbec2ac9fcecffc1d25b31e7afb8ae159.tar.bz2 |
* Adapt framework install makefiles to 2to3 tool
* Re-enable installation of files in /usr/local/bin in the OSX installer
because those files no longer clash with a 2.x install.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/configDialog.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/configDialog.py b/Lib/idlelib/configDialog.py index 20ed827..2ce87d7 100644 --- a/Lib/idlelib/configDialog.py +++ b/Lib/idlelib/configDialog.py @@ -1104,6 +1104,7 @@ class ConfigDialog(Toplevel): def DeactivateCurrentConfig(self): #Before a config is saved, some cleanup of current #config must be done - remove the previous keybindings + print self.parent, type(self.parent) winInstances = self.parent.instance_dict.keys() for instance in winInstances: instance.RemoveKeybindings() |