msilib.SummaryInformation.Persist()

SummaryInformation.Persist() Write the modified properties to the summary information stream, using MsiSummaryInfoPersist().

urllib.error.ContentTooShortError

exception urllib.error.ContentTooShortError(msg, content) This exception is raised when the urlretrieve() function detects that the amount of the downloaded data is less than the expected amount (given by the Content-Length header). The content attribute stores the downloaded (and supposedly truncated) data.

imaplib.IMAP4.getquota()

IMAP4.getquota(root) Get the quota root‘s resource usage and limits. This method is part of the IMAP4 QUOTA extension defined in rfc2087.

tarfile.TarInfo.isfile()

TarInfo.isfile() Return True if the Tarinfo object is a regular file.

msilib.text

msilib.text This module contains definitions for the UIText and ActionText tables, for the standard installer actions.

select.poll.register()

poll.register(fd[, eventmask]) Register a file descriptor with the polling object. Future calls to the poll() method will then check whether the file descriptor has any pending I/O events. fd can be either an integer, or an object with a fileno() method that returns an integer. File objects implement fileno(), so they can also be used as the argument. eventmask is an optional bitmask describing the type of events you want to check for, and can be a combination of the constants POLLIN, POLLPR

http.client.HTTPResponse.read()

HTTPResponse.read([amt]) Reads and returns the response body, or up to the next amt bytes.

importlib.abc.SourceLoader.exec_module()

exec_module(module) Concrete implementation of Loader.exec_module(). New in version 3.4.

dis.hasjabs

dis.hasjabs Sequence of bytecodes that have an absolute jump target.

wsgiref.handlers.BaseHandler.error_headers

error_headers The HTTP headers used for error responses. This should be a list of WSGI response headers ((name, value) tuples), as described in PEP 3333. The default list just sets the content type to text/plain.