string.Formatter

class string.Formatter The Formatter class has the following public methods: format(format_string, *args, **kwargs) The primary API method. It takes a format string and an arbitrary set of positional and keyword arguments. It is just a wrapper that calls vformat(). Deprecated since version 3.5: Passing a format string as keyword argument format_string has been deprecated. vformat(format_string, args, kwargs) This function does the actual work of formatting. It is exposed as a sepa

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.

dis.hasjabs

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

importlib.abc.SourceLoader.exec_module()

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

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.

msilib.text

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

xml.sax.xmlreader.InputSource

class xml.sax.xmlreader.InputSource(system_id=None) Encapsulation of the information needed by the XMLReader to read entities. This class may include information about the public identifier, system identifier, byte stream (possibly with character encoding information) and/or the character stream of an entity. Applications will create objects of this class for use in the XMLReader.parse() method and for returning from EntityResolver.resolveEntity. An InputSource belongs to the application, th

reprlib.Repr.maxother

Repr.maxother This limit is used to control the size of object types for which no specific formatting method is available on the Repr object. It is applied in a similar manner as maxstring. The default is 20.

email.charset.add_alias()

email.charset.add_alias(alias, canonical) Add a character set alias. alias is the alias name, e.g. latin-1. canonical is the character set’s canonical name, e.g. iso-8859-1. The global charset alias registry is kept in the module global dictionary ALIASES.