Files
typeshed/stdlib/grp.pyi
2022-01-30 16:27:06 -08:00

21 lines
615 B
Python

import sys
from _typeshed import structseq
from typing import Any, Optional
from typing_extensions import final
if sys.platform != "win32":
@final
class struct_group(structseq[Any], tuple[str, Optional[str], int, list[str]]):
@property
def gr_name(self) -> str: ...
@property
def gr_passwd(self) -> str | None: ...
@property
def gr_gid(self) -> int: ...
@property
def gr_mem(self) -> list[str]: ...
def getgrall() -> list[struct_group]: ...
def getgrgid(id: int) -> struct_group: ...
def getgrnam(name: str) -> struct_group: ...