# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ This module contains functions for accessing NIS maps. """ __doc__ = """This module contains functions for accessing NIS maps. """ __file__ = '/home/shared/src/ide/build-files/build-temp/runtimes-release/__os__/linux-x64/runtime-python3.12/lib/python3.12/lib-dynload/nis.cpython-312-x86_64-linux-gnu.so' __loader__ = None __name__ = 'nis' __package__ = '' __spec__ = None def cat(): """ cat(map, domain = defaultdomain) Returns the entire map as a dictionary. Optionally domain can be specified but it defaults to the system default domain. """ pass class error(Exception): pass def get_default_domain(): """ get_default_domain() -> str Corresponds to the C library yp_get_default_domain() call, returning the default NIS domain. """ return "" def maps(): """ maps(domain = defaultdomain) Returns an array of all available NIS maps within a domain. If domain is not specified it defaults to the system default domain. """ pass def match(): """ match(key, map, domain = defaultdomain) Corresponds to the C library yp_match() call, returning the value of key in the given map. Optionally domain can be specified but it defaults to the system default domain. """ pass