imaplib.IMAP4.rename()

IMAP4.rename(oldmailbox, newmailbox) Rename mailbox named oldmailbox to newmailbox.

xmlrpc.client.Binary.data

data The binary data encapsulated by the Binary instance. The data is provided as a bytes object.

wsgiref.handlers.BaseHandler.add_cgi_vars()

add_cgi_vars() Insert CGI variables for the current request into the environ attribute.

xml.dom.Comment.data

Comment.data The content of the comment as a string. The attribute contains all characters between the leading <!-- and trailing -->, but does not include them.

dis.opname

dis.opname Sequence of operation names, indexable using the bytecode.

gettext.NullTranslations.add_fallback()

add_fallback(fallback) Add fallback as the fallback object for the current translation object. A translation object should consult the fallback if it cannot provide a translation for a given message.

mimetypes.guess_all_extensions()

mimetypes.guess_all_extensions(type, strict=True) Guess the extensions for a file based on its MIME type, given by type. The return value is a list of strings giving all possible filename extensions, including the leading dot ('.'). The extensions are not guaranteed to have been associated with any particular data stream, but would be mapped to the MIME type type by guess_type(). The optional strict argument has the same meaning as with the guess_type() function.

cgi.parse()

cgi.parse(fp=None, environ=os.environ, keep_blank_values=False, strict_parsing=False) Parse a query in the environment or from a file (the file defaults to sys.stdin). The keep_blank_values and strict_parsing parameters are passed to urllib.parse.parse_qs() unchanged.

dbm.ndbm.library

dbm.ndbm.library Name of the ndbm implementation library used.

unittest.TestResult.wasSuccessful()

wasSuccessful() Return True if all tests run so far have passed, otherwise returns False. Changed in version 3.4: Returns False if there were any unexpectedSuccesses from tests marked with the expectedFailure() decorator.