Files
typeshed/stdlib/getpass.pyi
2021-08-08 11:05:21 +02:00

7 lines
165 B
Python

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