From f1d96d97fe8d4135fce931125b7e277d72fbbb2a Mon Sep 17 00:00:00 2001 From: Rune Tynan Date: Wed, 27 May 2020 04:05:33 -0400 Subject: [PATCH] Fix stubtest failures for msvcrt on windows (#4095) --- stdlib/2and3/msvcrt.pyi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stdlib/2and3/msvcrt.pyi b/stdlib/2and3/msvcrt.pyi index 7b4093081..bfbb67a28 100644 --- a/stdlib/2and3/msvcrt.pyi +++ b/stdlib/2and3/msvcrt.pyi @@ -8,7 +8,7 @@ LK_NBRLCK: int LK_RLCK: int LK_UNLCK: int -def locking(fd: int, mode: int, nbytes: int) -> None: ... +def locking(__fd: int, __mode: int, __nbytes: int) -> None: ... -def get_osfhandle(file: int) -> int: ... -def open_osfhandle(handle: int, flags: int) -> int: ... +def get_osfhandle(__fd: int) -> int: ... +def open_osfhandle(__handle: int, __flags: int) -> int: ...