mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-04-25 16:24:03 +08:00
6ff5b88ca7
Co-authored-by: hauntsaninja <>
7 lines
178 B
Python
7 lines
178 B
Python
from typing import Optional, TextIO
|
|
|
|
def getpass(prompt: str = ..., stream: Optional[TextIO] = ...) -> str: ...
|
|
def getuser() -> str: ...
|
|
|
|
class GetPassWarning(UserWarning): ...
|