summaryrefslogtreecommitdiff
path: root/Lib/idlelib/configHandler.py
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2003-11-24 05:26:16 +0000
committerKurt B. Kaiser <kbk@shore.net>2003-11-24 05:26:16 +0000
commit2303b1c19abd79c94da327d630cbac6f4e83a05c (patch)
treee410f1186e18cd3d9e0d1a1d1d478b57ecff0562 /Lib/idlelib/configHandler.py
parent5f4e45d66f3ed30f0275aba8d76c4fb34403bb9c (diff)
downloadcpython-git-2303b1c19abd79c94da327d630cbac6f4e83a05c.tar.gz
Keybindings with the Shift modifier now work correctly. So do bindings
which use the Space key. Limit unmodified user keybindings to the function keys. Python Bug 775353, IDLEfork Bugs 755647, 761557 Improve error handling during startup if there's no Tkinter. M NEWS.txt M PyShell.py M config-keys.def M configHandler.py M keybindingDialog.py Backport candidate.
Diffstat (limited to 'Lib/idlelib/configHandler.py')
-rw-r--r--Lib/idlelib/configHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configHandler.py b/Lib/idlelib/configHandler.py
index fd9cbc4580..3d79fb9b3a 100644
--- a/Lib/idlelib/configHandler.py
+++ b/Lib/idlelib/configHandler.py
@@ -531,7 +531,7 @@ class IdleConf:
'<<print-window>>': ['<Control-p>'],
'<<redo>>': ['<Control-y>'],
'<<remove-selection>>': ['<Escape>'],
- '<<save-copy-of-window-as-file>>': ['<Alt-Shift-s>'],
+ '<<save-copy-of-window-as-file>>': ['<Alt-Shift-S>'],
'<<save-window-as-file>>': ['<Alt-s>'],
'<<save-window>>': ['<Control-s>'],
'<<select-all>>': ['<Alt-a>'],