Files
typeshed/stdlib/3/msvcrt.pyi
2015-09-30 09:59:44 -07:00

9 lines
195 B
Python

# Stubs for msvcrt
# NOTE: These are incomplete!
from typing import overload, BinaryIO, TextIO
def get_osfhandle(file: int) -> int: ...
def open_osfhandle(handle: int, flags: int) -> int: ...