massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2 / spwd.pyi
1 from typing import List, NamedTuple\r
2 \r
3 struct_spwd = NamedTuple("struct_spwd", [("sp_nam", str),\r
4                                          ("sp_pwd", str),\r
5                                          ("sp_lstchg", int),\r
6                                          ("sp_min", int),\r
7                                          ("sp_max", int),\r
8                                          ("sp_warn", int),\r
9                                          ("sp_inact", int),\r
10                                          ("sp_expire", int),\r
11                                          ("sp_flag", int)])\r
12 \r
13 def getspall() -> List[struct_spwd]: ...\r
14 def getspnam(name: str) -> struct_spwd: ...\r