email.headerregistry.MIMEVersionHeader.version

version The version number as a string, with any whitespace and/or comments removed.

multiprocessing.JoinableQueue.join()

join() Block until all items in the queue have been gotten and processed. The count of unfinished tasks goes up whenever an item is added to the queue. The count goes down whenever a consumer calls task_done() to indicate that the item was retrieved and all work on it is complete. When the count of unfinished tasks drops to zero, join() unblocks.

zipfile.ZipFile.infolist()

ZipFile.infolist() Return a list containing a ZipInfo object for each member of the archive. The objects are in the same order as their entries in the actual ZIP file on disk if an existing archive was opened.

math.log10()

math.log10(x) Return the base-10 logarithm of x. This is usually more accurate than log(x, 10).

email.generator.BytesGenerator

class email.generator.BytesGenerator(outfp, mangle_from_=True, maxheaderlen=78, *, policy=None) The constructor for the BytesGenerator class takes a binary file-like object called outfp for an argument. outfp must support a write() method that accepts binary data. Optional mangle_from_ is a flag that, when True, puts a > character in front of any line in the body that starts exactly as From, i.e. From followed by a space at the beginning of the line. This is the only guaranteed portable w

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.

xmlrpc.client.Fault.faultString

faultString A string containing a diagnostic message associated with the fault.

xml.dom.HierarchyRequestErr

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

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).

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).