Files
typeshed/stdlib/3/getpass.pyi
2018-06-28 10:29:45 -07:00

13 lines
203 B
Python

# Stubs for getpass
from typing import Optional, TextIO
def getpass(prompt: str = ..., stream: Optional[TextIO] = ...) -> str: ...
def getuser() -> str: ...
class GetPassWarning(UserWarning): ...