From c02d2ecb060632df4dc31e842a159166cf5054b0 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Wed, 21 Jun 2017 21:48:24 -0400 Subject: [PATCH] Fix typo in idlelib.config_key.py --- Lib/idlelib/config_key.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/config_key.py b/Lib/idlelib/config_key.py index 26022934c3300a..479d6ad313e35f 100644 --- a/Lib/idlelib/config_key.py +++ b/Lib/idlelib/config_key.py @@ -186,7 +186,7 @@ def ClearKeySeq(self): def LoadFinalKeyList(self): #these tuples are also available for use in validity checks - self.functionKeys=('F1','F2','F2','F4','F5','F6','F7','F8','F9', + self.functionKeys=('F1','F2','F3','F4','F5','F6','F7','F8','F9', 'F10','F11','F12') self.alphanumKeys=tuple(string.ascii_lowercase+string.digits) self.punctuationKeys=tuple('~!@#%^&*()_-+={}[]|;:,.<>/?')