Files
typeshed/stdlib/2and3/msvcrt.pyi
Jelle Zijlstra 5d553c9584 apply black and isort (#4287)
* apply black and isort

* move some type ignores
2020-06-28 13:31:00 -07:00

14 lines
286 B
Python

# Stubs for msvcrt
# NOTE: These are incomplete!
LK_LOCK: int
LK_NBLCK: int
LK_NBRLCK: int
LK_RLCK: int
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: ...