mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-06 21:43:59 +08:00
5d553c9584
* apply black and isort * move some type ignores
9 lines
199 B
Python
9 lines
199 B
Python
# Stubs for getpass
|
|
|
|
from typing import Optional, TextIO
|
|
|
|
def getpass(prompt: str = ..., stream: Optional[TextIO] = ...) -> str: ...
|
|
def getuser() -> str: ...
|
|
|
|
class GetPassWarning(UserWarning): ...
|