From 822e4276931b367a461e53ffb1ef594653ef1e4a Mon Sep 17 00:00:00 2001 From: Jonathan Slenders Date: Thu, 17 Sep 2020 10:55:44 +0200 Subject: [PATCH] Added annotations for msvcrt.getch. (#4547) --- stdlib/2and3/msvcrt.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/2and3/msvcrt.pyi b/stdlib/2and3/msvcrt.pyi index 2f48f7969..2167a7311 100644 --- a/stdlib/2and3/msvcrt.pyi +++ b/stdlib/2and3/msvcrt.pyi @@ -11,3 +11,4 @@ LK_UNLCK: int def locking(__fd: int, __mode: int, __nbytes: int) -> None: ... def get_osfhandle(__fd: int) -> int: ... def open_osfhandle(__handle: int, __flags: int) -> int: ... +def getch() -> bytes: ...