File indexing completed on 2024-04-28 15:53:57

0001 # AUTO-GENERATED FILE -- DO NOT EDIT
0002 
0003 """ This module contains functions for accessing NIS maps.
0004  """
0005 
0006 __package__ = None
0007 
0008 def cat():
0009   """ cat(map, domain = defaultdomain)
0010   Returns the entire map as a dictionary. Optionally domain can be
0011   specified but it defaults to the system default domain.
0012    """
0013   pass
0014 
0015 class error(Exception):
0016 
0017   pass
0018 
0019 def get_default_domain():
0020   """ get_default_domain() -> str
0021   Corresponds to the C library yp_get_default_domain() call, returning
0022   the default NIS domain.
0023    """
0024   return ""
0025 
0026 def maps(arg0):
0027   """ maps(domain = defaultdomain)
0028   Returns an array of all available NIS maps within a domain. If domain
0029   is not specified it defaults to the system default domain.
0030    """
0031   return None
0032 
0033 def match():
0034   """ match(key, map, domain = defaultdomain)
0035   Corresponds to the C library yp_match() call, returning the value of
0036   key in the given map. Optionally domain can be specified but it
0037   defaults to the system default domain.
0038    """
0039   pass
0040