massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / spwd.pyi
1 from typing import NamedTuple
2
3 class struct_spwd(NamedTuple):
4     sp_namp: str
5     sp_pwdp: str
6     sp_lstchg: int
7     sp_min: int
8     sp_max: int
9     sp_warn: int
10     sp_inact: int
11     sp_expire: int
12     sp_flag: int
13
14 def getspall() -> list[struct_spwd]: ...
15 def getspnam(__arg: str) -> struct_spwd: ...