mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
12 lines
295 B
Python
12 lines
295 B
Python
from typing import List, NamedTuple, Optional
|
|
|
|
class struct_group(NamedTuple):
|
|
gr_name: str
|
|
gr_passwd: Optional[str]
|
|
gr_gid: int
|
|
gr_mem: List[str]
|
|
|
|
def getgrall() -> List[struct_group]: ...
|
|
def getgrgid(gid: int) -> struct_group: ...
|
|
def getgrnam(name: str) -> struct_group: ...
|