Files
typeshed/stdlib/getpass.pyi
2023-01-18 09:37:34 +01:00

9 lines
227 B
Python

from typing import TextIO
__all__ = ["getpass", "getuser", "GetPassWarning"]
def getpass(prompt: str = "Password: ", stream: TextIO | None = None) -> str: ...
def getuser() -> str: ...
class GetPassWarning(UserWarning): ...