https://github.com/python/cpython/commit/67851201d8e76fd2c79c91ed5678fa5ca40cafef
commit: 67851201d8e76fd2c79c91ed5678fa5ca40cafef
branch: 3.13
author: Miss Islington (bot) <[email protected]>
committer: pablogsal <[email protected]>
date: 2024-09-03T15:01:14+01:00
summary:

[3.13] gh-123572: Fix key codes in VK_MAP in windows_console.py (GH-122692) 
(#123632)

gh-123572: Fix key codes in VK_MAP in windows_console.py (GH-122692)
(cherry picked from commit 782217f28f0d67916fc3ff82b03b88573686c0e7)

Co-authored-by: devdanzin <[email protected]>

files:
A 
Misc/NEWS.d/next/Core_and_Builtins/2024-09-03-13-34-35.gh-issue-123572.uuqoYV.rst
M Lib/_pyrepl/windows_console.py

diff --git a/Lib/_pyrepl/windows_console.py b/Lib/_pyrepl/windows_console.py
index ba9af36b8be99c..14a426ba8a475c 100644
--- a/Lib/_pyrepl/windows_console.py
+++ b/Lib/_pyrepl/windows_console.py
@@ -63,6 +63,7 @@ def __init__(self, err: int | None, descr: str | None = None) 
-> None:
 if TYPE_CHECKING:
     from typing import IO
 
+# Virtual-Key Codes: 
https://learn.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes
 VK_MAP: dict[int, str] = {
     0x23: "end",  # VK_END
     0x24: "home",  # VK_HOME
@@ -87,10 +88,10 @@ def __init__(self, err: int | None, descr: str | None = 
None) -> None:
     0x7D: "f14",  # VK_F14
     0x7E: "f15",  # VK_F15
     0x7F: "f16",  # VK_F16
-    0x79: "f17",  # VK_F17
-    0x80: "f18",  # VK_F18
-    0x81: "f19",  # VK_F19
-    0x82: "f20",  # VK_F20
+    0x80: "f17",  # VK_F17
+    0x81: "f18",  # VK_F18
+    0x82: "f19",  # VK_F19
+    0x83: "f20",  # VK_F20
 }
 
 # Console escape codes: 
https://learn.microsoft.com/en-us/windows/console/console-virtual-terminal-sequences
diff --git 
a/Misc/NEWS.d/next/Core_and_Builtins/2024-09-03-13-34-35.gh-issue-123572.uuqoYV.rst
 
b/Misc/NEWS.d/next/Core_and_Builtins/2024-09-03-13-34-35.gh-issue-123572.uuqoYV.rst
new file mode 100644
index 00000000000000..38456ac60ca4ed
--- /dev/null
+++ 
b/Misc/NEWS.d/next/Core_and_Builtins/2024-09-03-13-34-35.gh-issue-123572.uuqoYV.rst
@@ -0,0 +1,2 @@
+Fix key mappings for various F-keys in Windows for the new REPL. Patch by
+devdanzin

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to