Files
typeshed/stdlib/nis.pyi
2022-01-30 16:27:06 -08:00

10 lines
293 B
Python

import sys
if sys.platform != "win32":
def cat(map: str, domain: str = ...) -> dict[str, str]: ...
def get_default_domain() -> str: ...
def maps(domain: str = ...) -> list[str]: ...
def match(key: str, map: str, domain: str = ...) -> str: ...
class error(Exception): ...