massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / msvcrt.pyi
1 import sys
2
3 # This module is only available on Windows
4 if sys.platform == "win32":
5     LK_LOCK: int
6     LK_NBLCK: int
7     LK_NBRLCK: int
8     LK_RLCK: int
9     LK_UNLCK: int
10     def locking(__fd: int, __mode: int, __nbytes: int) -> None: ...
11     def setmode(__fd: int, __mode: int) -> int: ...
12     def open_osfhandle(__handle: int, __flags: int) -> int: ...
13     def get_osfhandle(__fd: int) -> int: ...
14     def kbhit() -> bool: ...
15     def getch() -> bytes: ...
16     def getwch() -> str: ...
17     def getche() -> bytes: ...
18     def getwche() -> str: ...
19     def putch(__char: bytes) -> None: ...
20     def putwch(__unicode_char: str) -> None: ...
21     def ungetch(__char: bytes) -> None: ...
22     def ungetwch(__unicode_char: str) -> None: ...
23     def heapmin() -> None: ...