Files
typeshed/stdlib/@python2/grp.pyi
2021-08-14 11:12:30 +02:00

12 lines
281 B
Python

from typing import List, 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: ...