mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
msvcrt: improve bytes handling (#9071)
This commit is contained in:
@@ -21,8 +21,8 @@ if sys.platform == "win32":
|
||||
def getwch() -> str: ...
|
||||
def getche() -> bytes: ...
|
||||
def getwche() -> str: ...
|
||||
def putch(__char: bytes) -> None: ...
|
||||
def putch(__char: bytes | bytearray) -> None: ...
|
||||
def putwch(__unicode_char: str) -> None: ...
|
||||
def ungetch(__char: bytes) -> None: ...
|
||||
def ungetch(__char: bytes | bytearray) -> None: ...
|
||||
def ungetwch(__unicode_char: str) -> None: ...
|
||||
def heapmin() -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user