mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
9 lines
195 B
Python
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: ...
|