imaplib.IMAP4.namespace()

IMAP4.namespace() Returns IMAP namespaces as defined in RFC2342.

xml.dom.Node.attributes

Node.attributes A NamedNodeMap of attribute objects. Only elements have actual values for this; others provide None for this attribute. This is a read-only attribute.

asyncio.Future.done()

done() Return True if the future is done. Done means either that a result / exception are available, or that the future was cancelled.

operator.__matmul__()

operator.__matmul__(a, b) Return a @ b. New in version 3.5.

pathlib.PurePath.is_absolute()

PurePath.is_absolute() Return whether the path is absolute or not. A path is considered absolute if it has both a root and (if the flavour allows) a drive: >>> PurePosixPath('/a/b').is_absolute() True >>> PurePosixPath('a/b').is_absolute() False >>> PureWindowsPath('c:/a/b').is_absolute() True >>> PureWindowsPath('/a/b').is_absolute() False >>> PureWindowsPath('c:').is_absolute() False >>> PureWindowsPath('//some/share').is_absolute() Tr

uu.decode()

uu.decode(in_file, out_file=None, mode=None, quiet=False) This call decodes uuencoded file in_file placing the result on file out_file. If out_file is a pathname, mode is used to set the permission bits if the file must be created. Defaults for out_file and mode are taken from the uuencode header. However, if the file specified in the header already exists, a uu.Error is raised. decode() may print a warning to standard error if the input was produced by an incorrect uuencoder and Python coul

decimal.Context.normalize()

normalize(x) Reduces x to its simplest form.

struct.Struct.unpack_from()

unpack_from(buffer, offset=0) Identical to the unpack_from() function, using the compiled format. The buffer’s size in bytes, minus offset, must be at least size.

curses.window.inch()

window.inch([y, x]) Return the character at the given position in the window. The bottom 8 bits are the character proper, and upper bits are the attributes.

xml.parsers.expat.ExpatError.offset

ExpatError.offset Character offset into the line where the error occurred. The first column is numbered 0.