Files
typeshed/stdlib/@python2/getpass.pyi
T
2021-01-27 12:00:39 +00:00

7 lines
160 B
Python

from typing import IO, Any
class GetPassWarning(UserWarning): ...
def getpass(prompt: str = ..., stream: IO[Any] = ...) -> str: ...
def getuser() -> str: ...