json.JSONEncoder.encode()

encode(o) Return a JSON string representation of a Python data structure, o. For example: >>> json.JSONEncoder().encode({"foo": ["bar", "baz"]}) '{"foo": ["bar", "baz"]}'

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.

email.errors.MessageParseError

exception email.errors.MessageParseError This is the base class for exceptions raised by the Parser class. It is derived from MessageError.

importlib.abc.SourceLoader.get_source()

get_source(fullname) Concrete implementation of InspectLoader.get_source().

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.

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.

tarfile.TarInfo.isfile()

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