Files
typeshed/stdlib/@python2/grp.pyi
2022-01-01 13:26:20 +01:00

13 lines
351 B
Python

import sys
from typing import List, NamedTuple
if sys.platform != "win32":
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: ...