mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
9 lines
217 B
Python
9 lines
217 B
Python
from typing import TextIO
|
|
|
|
__all__ = ["getpass", "getuser", "GetPassWarning"]
|
|
|
|
def getpass(prompt: str = ..., stream: TextIO | None = ...) -> str: ...
|
|
def getuser() -> str: ...
|
|
|
|
class GetPassWarning(UserWarning): ...
|