argparse.ArgumentParser.add_argument_group()

ArgumentParser.add_argument_group(title=None, description=None) By default, ArgumentParser groups command-line

2016-10-07 17:26:11
os.getenv()

os.getenv(key, default=None) Return the value of the environment variable key if it exists, or default if

2016-10-07 17:39:01
curses.ascii.isgraph()

curses.ascii.isgraph(c) Checks for ASCII any printable character except space.

2016-10-07 17:29:55
ctypes.c_bool

class ctypes.c_bool Represent the C bool datatype (more accurately, _Bool from C99). Its value can

2016-10-07 17:29:34
os.setxattr()

os.setxattr(path, attribute, value, flags=0, *, follow_symlinks=True) Set the extended filesystem attribute attribute

2016-10-07 17:39:45
argparse.ArgumentParser.format_help()

ArgumentParser.format_help() Return a string containing a help message, including the program usage and information about the

2016-10-07 17:26:12
argparse.ArgumentParser

class argparse.ArgumentParser(prog=None, usage=None, description=None, epilog=None, parents=[], formatter_class=argparse.HelpFormatter, prefix_chars='-', fromfile_prefix_chars=None

2016-10-07 17:26:10
ctypes.OleDLL

class ctypes.OleDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False) Windows only: Instances of

2016-10-07 17:29:43
curses.typeahead()

curses.typeahead(fd) Specify that the file descriptor fd be used for typeahead checking. If fd is -1

2016-10-07 17:30:16
os.initgroups()

os.initgroups(username, gid) Call the system initgroups() to initialize the group access list with all of the groups of which

2016-10-07 17:39:10