Make copy, cut and paste events case insensitive.  Reported by Patrick
K. O'Brien on idle-dev.

(Should other bindings follow suit?)
diff --git a/Tools/idle/keydefs.py b/Tools/idle/keydefs.py
index 39eb306..edddd83 100644
--- a/Tools/idle/keydefs.py
+++ b/Tools/idle/keydefs.py
@@ -1,7 +1,7 @@
 windows_keydefs = \
-{'<<Copy>>': ['<Control-c>'],
- '<<Cut>>': ['<Control-x>'],
- '<<Paste>>': ['<Control-v>'],
+{'<<Copy>>': ['<Control-c>', '<Control-C>'],
+ '<<Cut>>': ['<Control-x>', '<Control-X>'],
+ '<<Paste>>': ['<Control-v>', '<Control-V>'],
  '<<beginning-of-line>>': ['<Control-a>', '<Home>'],
  '<<center-insert>>': ['<Control-l>'],
  '<<close-all-windows>>': ['<Control-q>'],