tkinter.ttk.Treeview.reattach()

reattach(item, parent, index) An alias for Treeview.move().

symtable.Symbol.is_declared_global()

is_declared_global() Return True if the symbol is declared global with a global statement.

xml.dom.Attr.localName

Attr.localName The part of the name following the colon if there is one, else the entire name. This is a read-only attribute.

operator.ifloordiv()

operator.ifloordiv(a, b) operator.__ifloordiv__(a, b) a = ifloordiv(a, b) is equivalent to a //= b.

datetime.datetime.time()

datetime.time() Return time object with same hour, minute, second and microsecond. tzinfo is None. See also method timetz().

json.dumps()

json.dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=None, indent=None, separators=None, default=None, sort_keys=False, **kw) Serialize obj to a JSON formatted str using this conversion table. The arguments have the same meaning as in dump(). Note Unlike pickle and marshal, JSON is not a framed protocol, so trying to serialize multiple objects with repeated calls to dump() using the same fp will result in an invalid JSON file. Note Keys in key/value

imaplib.IMAP4.fetch()

IMAP4.fetch(message_set, message_parts) Fetch (parts of) messages. message_parts should be a string of message part names enclosed within parentheses, eg: "(UID BODY[TEXT])". Returned data are tuples of message part envelope and data.

html.parser.HTMLParser.reset()

HTMLParser.reset() Reset the instance. Loses all unprocessed data. This is called implicitly at instantiation time.

ConnectionAbortedError

exception ConnectionAbortedError A subclass of ConnectionError, raised when a connection attempt is aborted by the peer. Corresponds to errno ECONNABORTED.

mailbox.Mailbox.iterkeys()

iterkeys() keys() Return an iterator over all keys if called as iterkeys() or return a list of keys if called as keys().