Files
typeshed/stdlib/2and3/nis.pyi
2018-06-11 11:26:32 -07:00

11 lines
323 B
Python

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