Files
typeshed/stdlib/3/getpass.pyi
2016-05-17 14:32:03 +01:00

14 lines
189 B
Python

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