Files
typeshed/stdlib/3/getpass.pyi
2016-03-15 10:15:31 +01:00

14 lines
182 B
Python

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