diff options
author | devdanzin <74280297+devdanzin@users.noreply.github.com> | 2024-09-03 13:01:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-03 13:01:21 (GMT) |
commit | 782217f28f0d67916fc3ff82b03b88573686c0e7 (patch) | |
tree | a6416c30495dd2ae8aba7c2537061436390e29c9 /Lib/_pyrepl | |
parent | 6822cb23c62032381971d8a47fd41d1e98710a8c (diff) | |
download | cpython-782217f28f0d67916fc3ff82b03b88573686c0e7.zip cpython-782217f28f0d67916fc3ff82b03b88573686c0e7.tar.gz cpython-782217f28f0d67916fc3ff82b03b88573686c0e7.tar.bz2 |
gh-123572: Fix key codes in VK_MAP in windows_console.py (#122692)
Diffstat (limited to 'Lib/_pyrepl')
-rw-r--r-- | Lib/_pyrepl/windows_console.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Lib/_pyrepl/windows_console.py b/Lib/_pyrepl/windows_console.py index 6c3f703..08337af 100644 --- a/Lib/_pyrepl/windows_console.py +++ b/Lib/_pyrepl/windows_console.py @@ -63,6 +63,7 @@ TYPE_CHECKING = False 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 @@ VK_MAP: dict[int, str] = { 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 |