mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
14 lines
182 B
Python
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
|