]> granicus.if.org Git - python/commitdiff
Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.
authorKurt B. Kaiser <kbk@shore.net>
Tue, 18 Jul 2006 04:03:16 +0000 (04:03 +0000)
committerKurt B. Kaiser <kbk@shore.net>
Tue, 18 Jul 2006 04:03:16 +0000 (04:03 +0000)
Lib/idlelib/NEWS.txt
Lib/idlelib/keybindingDialog.py

index 034ddedfce7d9933c066a5f3607bab86d6e86a1c..fb77e13a4d03197bb1e2245c37bd22d576ea4736 100644 (file)
@@ -1,3 +1,14 @@
+What's New in IDLE 1.2c1?
+=========================
+
+*Release date: XX-XXX-2006*
+
+- Rebinding Tab key was inserting 'tab' instead of 'Tab'.  Bug 1179168.
+
+- Colorizer now handles #<builtin> correctly, also unicode strings and
+  'as' keyword in comment directly following import command. Closes 1325071.
+  Patch 1479219 Tal Einat
+
 What's New in IDLE 1.2b2?
 =========================
 
index 26d6ad10eb2486ad2cd8aa928165230d1286062e..aff9cac5879fa8dc69498d5568a548c59cc932a3 100644 (file)
@@ -202,7 +202,7 @@ class GetKeysDialog(Toplevel):
                 ':':'colon',',':'comma','.':'period','<':'less','>':'greater',
                 '/':'slash','?':'question','Page Up':'Prior','Page Down':'Next',
                 'Left Arrow':'Left','Right Arrow':'Right','Up Arrow':'Up',
-                'Down Arrow': 'Down', 'Tab':'tab'}
+                'Down Arrow': 'Down', 'Tab':'Tab'}
         if key in translateDict.keys():
             key = translateDict[key]
         if 'Shift' in modifiers and key in string.ascii_lowercase: