imaplib.IMAP4.login()

IMAP4.login(user, password) Identify the client using a plaintext password. The password will be quoted.

selectors.KqueueSelector

class selectors.KqueueSelector select.kqueue()-based selector. fileno() This returns the file descriptor used by the underlying select.kqueue() object.

None

None The sole value of the type NoneType. None is frequently used to represent the absence of a value, as when default arguments are not passed to a function. Assignments to None are illegal and raise a SyntaxError.

bdb.Bdb.clear_all_breaks()

clear_all_breaks() Delete all existing breakpoints.

http.cookies.Morsel.copy()

Morsel.copy(value) Return a shallow copy of the Morsel object. Changed in version 3.5: return a Morsel object instead of a dict.

xml.etree.ElementTree.TreeBuilder.end()

end(tag) Closes the current element. tag is the element name. Returns the closed element.

xml.dom.Document.getElementsByTagName()

Document.getElementsByTagName(tagName) Search for all descendants (direct children, children’s children, etc.) with a particular element type name.

gettext.NullTranslations._parse()

_parse(fp) No-op’d in the base class, this method takes file object fp, and reads the data from the file, initializing its message catalog. If you have an unsupported message catalog file format, you should override this method to parse your format.

str.istitle()

str.istitle() Return true if the string is a titlecased string and there is at least one character, for example uppercase characters may only follow uncased characters and lowercase characters only cased ones. Return false otherwise.

ctypes.py_object

class ctypes.py_object Represents the C PyObject * datatype. Calling this without an argument creates a NULL PyObject * pointer.