mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
12 lines
275 B
Python
12 lines
275 B
Python
from typing import NamedTuple
|
|
|
|
class struct_group(NamedTuple):
|
|
gr_name: str
|
|
gr_passwd: str | None
|
|
gr_gid: int
|
|
gr_mem: list[str]
|
|
|
|
def getgrall() -> list[struct_group]: ...
|
|
def getgrgid(id: int) -> struct_group: ...
|
|
def getgrnam(name: str) -> struct_group: ...
|