mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
19 lines
460 B
Python
19 lines
460 B
Python
from typing import ClassVar, Tuple
|
|
|
|
class struct_passwd(Tuple[str, str, int, int, str, str, str]):
|
|
pw_name: str
|
|
pw_passwd: str
|
|
pw_uid: int
|
|
pw_gid: int
|
|
pw_gecos: str
|
|
pw_dir: str
|
|
pw_shell: str
|
|
|
|
n_fields: ClassVar[int]
|
|
n_sequence_fields: ClassVar[int]
|
|
n_unnamed_fields: ClassVar[int]
|
|
|
|
def getpwall() -> list[struct_passwd]: ...
|
|
def getpwuid(__uid: int) -> struct_passwd: ...
|
|
def getpwnam(__name: str) -> struct_passwd: ...
|