mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
7 lines
160 B
Python
7 lines
160 B
Python
from typing import IO, Any
|
|
|
|
class GetPassWarning(UserWarning): ...
|
|
|
|
def getpass(prompt: str = ..., stream: IO[Any] = ...) -> str: ...
|
|
def getuser() -> str: ...
|