http.cookiejar.Cookie.version

Cookie.version Integer or None. Netscape cookies have version 0. RFC 2965 and RFC 2109 cookies have a version cookie-attribute of 1. However, note that http.cookiejar may ‘downgrade’ RFC 2109 cookies to Netscape cookies, in which case version is 0.

configparser.ParsingError

exception configparser.ParsingError Exception raised when errors occur attempting to parse a file. Changed in version 3.2: The filename attribute and __init__() argument were renamed to source for consistency.

pathlib.Path.unlink()

Path.unlink() Remove this file or symbolic link. If the path points to a directory, use Path.rmdir() instead.

imaplib.IMAP4.search()

IMAP4.search(charset, criterion[, ...]) Search mailbox for matching messages. charset may be None, in which case no CHARSET will be specified in the request to the server. The IMAP protocol requires that at least one criterion be specified; an exception will be raised when the server returns an error. charset must be None if the UTF8=ACCEPT capability was enabled using the enable() command. Example: # M is a connected IMAP4 instance... typ, msgnums = M.search(None, 'FROM', '"LDJ"') # or: ty

time.timezone

time.timezone The offset of the local (non-DST) timezone, in seconds west of UTC (negative in most of Western Europe, positive in the US, zero in the UK).

xml.etree.ElementTree.ElementTree.iter()

iter(tag=None) Creates and returns a tree iterator for the root element. The iterator loops over all elements in this tree, in section order. tag is the tag to look for (default is to return all elements).

xml.dom.HierarchyRequestErr

exception xml.dom.HierarchyRequestErr Raised when an attempt is made to insert a node where the node type is not allowed.

nntplib.NNTP.nntp_version

NNTP.nntp_version An integer representing the version of the NNTP protocol supported by the server. In practice, this should be 2 for servers advertising RFC 3977 compliance and 1 for others. New in version 3.2.

decimal.Decimal.is_subnormal()

is_subnormal(context=None) Return True if the argument is subnormal, and False otherwise.

bdb.Bdb.canonic()

canonic(filename) Auxiliary method for getting a filename in a canonical form, that is, as a case-normalized (on case-insensitive filesystems) absolute path, stripped of surrounding angle brackets.