Files
typeshed/stdlib/nis.pyi
Ivan Levkivskyi 16ae4c6120 Re-organize directory structure (#4971)
See discussion in #2491

Co-authored-by: Ivan Levkivskyi <ilevkivskyi@dropbox.com>
2021-01-27 12:00:39 +00: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): ...