Files
typeshed/stdlib/2and3/nis.pyi
Jelle Zijlstra 5d553c9584 apply black and isort (#4287)
* apply black and isort

* move some type ignores
2020-06-28 13:31:00 -07:00

10 lines
322 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): ...