mimetypes.MimeTypes.types_map

MimeTypes.types_map Tuple containing two dictionaries, mapping filename extensions to MIME types: the first dictionary is for the non-standards types and the second one is for the standard types. They are initialized by common_types and types_map.

select.kqueue.fileno()

kqueue.fileno() Return the file descriptor number of the control fd.

pathlib.Path.group()

Path.group() Return the name of the group owning the file. KeyError is raised if the file’s gid isn’t found in the system database.

os.stat_result.st_ino

st_ino Inode number.

os.unlink()

os.unlink(path, *, dir_fd=None) Remove (delete) the file path. This function is semantically identical to remove(); the unlink name is its traditional Unix name. Please see the documentation for remove() for further information. New in version 3.3: The dir_fd parameter.

xdrlib.Packer

class xdrlib.Packer Packer is the class for packing data into XDR representation. The Packer class is instantiated with no arguments.

operator.__ior__()

operator.__ior__(a, b) a = ior(a, b) is equivalent to a |= b.

parser.expr()

parser.expr(source) The expr() function parses the parameter source as if it were an input to compile(source, 'file.py', 'eval'). If the parse succeeds, an ST object is created to hold the internal parse tree representation, otherwise an appropriate exception is raised.

traceback.TracebackException.__context__

__context__ A TracebackException of the original __context__.

curses.tigetstr()

curses.tigetstr(capname) Return the value of the string capability corresponding to the terminfo capability name capname. None is returned if capname is not a string capability, or is canceled or absent from the terminal description.