massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / pwd.pyi
1 from typing import ClassVar, Tuple
2
3 class struct_passwd(Tuple[str, str, int, int, str, str, str]):
4     pw_name: str
5     pw_passwd: str
6     pw_uid: int
7     pw_gid: int
8     pw_gecos: str
9     pw_dir: str
10     pw_shell: str
11
12     n_fields: ClassVar[int]
13     n_sequence_fields: ClassVar[int]
14     n_unnamed_fields: ClassVar[int]
15
16 def getpwall() -> list[struct_passwd]: ...
17 def getpwuid(__uid: int) -> struct_passwd: ...
18 def getpwnam(__name: str) -> struct_passwd: ...