Info: -Python Version: Python 2.3c1 (#44, Jul 18 2003, 14:32: 36) [MSC v.1200 32 bit (Intel)] on win32 -IDLE Version:IDLE 1.0rc1 -OS: Windows 2000 SP4 -Source: Installed from Installer on website (http://www. python.org/ftp/python/2.3/Python-2.3c1.exe) Behavior: In the "File" dropdown menu in IDLE, the listed keybind for "Save As" is Ctrl+Shift+S. This does not work. When you hit Ctrl+Shift+S, nothing happens. Additionally, the keybind for "Save Copy As...", Alt+Shift+S, does not work.
Logged In: YES user_id=716326 Checking through the code, it seems that the problem is in the file "configHandler.py". The bindings are assigned with _lowercase_ letters: '<>': [''], '<>': [''], So the keybindings will work when CAPSLOCK is active. Otherwise, it won't.
Logged In: YES user_id=149084 Duplicate of IDLEfork Bug 755647 None of the bindings with a Shift modifier work because it is then necessary to use the upper case keysym. IDLE is using the lower case.