mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
grp is not available on Windows (#6740)
This commit is contained in:
@@ -1,18 +1,19 @@
|
||||
import sys
|
||||
from _typeshed import structseq
|
||||
from typing import Any, Optional
|
||||
from typing_extensions import final
|
||||
|
||||
@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: ...
|
||||
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: ...
|
||||
|
||||
Reference in New Issue
Block a user