From 396998e0c6ee7e555133c53ce42224046b1255f7 Mon Sep 17 00:00:00 2001 From: terryjreedy Date: Wed, 21 Jun 2017 22:46:07 -0400 Subject: [PATCH] [3.6] Fix typo in idlelib.config_key.py (GH-2322) (#2323) (cherry picked from commit a0e911b) --- 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 26022934c3..479d6ad313 100644 --- a/Lib/idlelib/config_key.py +++ b/Lib/idlelib/config_key.py @@ -186,7 +186,7 @@ class GetKeysDialog(Toplevel): 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('~!@#%^&*()_-+={}[]|;:,.<>/?') -- 2.50.1