mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
9 lines
192 B
Python
9 lines
192 B
Python
# Stubs for getpass (Python 2)
|
|
|
|
from typing import Any, IO
|
|
|
|
class GetPassWarning(UserWarning): ...
|
|
|
|
def getpass(prompt: str = ..., stream: IO[Any] = ...) -> str: ...
|
|
def getuser() -> str: ...
|