Files
typeshed/stdlib/2.7/getpass.pyi
2015-09-30 09:59:44 -07:00

9 lines
202 B
Python

# Stubs for getpass (Python 2)
from typing import Any, IO
class GetPassWarning(UserWarning): ...
def getpass(prompt: str = 'Password: ', stream: IO[Any] = None) -> str: ...
def getuser() -> str: ...