Skip to content

Commit

Permalink
Fix stubtest failures for msvcrt on windows (#4095)
Browse files Browse the repository at this point in the history
  • Loading branch information
CraftSpider committed May 27, 2020
1 parent edb7dc1 commit f1d96d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stdlib/2and3/msvcrt.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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: ...

0 comments on commit f1d96d9

Please sign in to comment.