Do not insert erroneous character while pressing Shift key toghether with DEL or INSERT.
http://bugs.debian.org/347622
http://bugs.debian.org/347623
http://sourceforge.net/support/tracker.php?aid=1418091

Index: drpython-3.11.4/drShortcuts.py
===================================================================
--- drpython-3.11.4.orig/drShortcuts.py
+++ drpython-3.11.4/drShortcuts.py
@@ -333,6 +333,9 @@ def SetSTCShortcuts(stc, Shortcuts, useD
             stc.CmdKeyAssign(PreDefArray[i], modifiers, cmdlist[x])
         x = x + 1
 
+    stc.CmdKeyAssign(wx.stc.STC_KEY_DELETE, wx.stc.STC_SCMOD_SHIFT, wx.stc.STC_CMD_CLEAR)
+    stc.CmdKeyAssign(wx.stc.STC_KEY_INSERT, wx.stc.STC_SCMOD_SHIFT, wx.stc.STC_CMD_EDITTOGGLEOVERTYPE)
+
     return Shortcuts
 
 def SetShortcuts(frame, Shortcuts, ShortcutNames, useDefault=0):
