massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / getpass.pyi
1 from typing import TextIO
2
3 def getpass(prompt: str = ..., stream: TextIO | None = ...) -> str: ...
4 def getuser() -> str: ...
5
6 class GetPassWarning(UserWarning): ...