unittest.TestCase.fail()

fail(msg=None) Signals a test failure unconditionally, with msg or None for the error message.

msilib.Control.mapping()

mapping(event, attribute) Make an entry into the EventMapping table for this control.

multiprocessing.JoinableQueue

class multiprocessing.JoinableQueue([maxsize]) JoinableQueue, a Queue subclass, is a queue which additionally has task_done() and join() methods. task_done() Indicate that a formerly enqueued task is complete. Used by queue consumers. For each get() used to fetch a task, a subsequent call to task_done() tells the queue that the processing on the task is complete. If a join() is currently blocking, it will resume when all items have been processed (meaning that a task_done() call was recei

configparser.ConfigParser.has_section()

has_section(section) Indicates whether the named section is present in the configuration. The default section is not acknowledged.

logging.Logger.findCaller()

Logger.findCaller(stack_info=False) Finds the caller’s source filename and line number. Returns the filename, line number, function name and stack information as a 4-element tuple. The stack information is returned as None unless stack_info is True.

poplib.POP3.list()

POP3.list([which]) Request message list, result is in the form (response, ['mesg_num octets', ...], octets). If which is set, it is the message to list.

parser.ST.tolist()

ST.tolist(line_info=False, col_info=False) Same as st2list(st, line_info, col_info).

xml.dom.NodeList.item()

NodeList.item(i) Return the i‘th item from the sequence, if there is one, or None. The index i is not allowed to be less than zero or greater than or equal to the length of the sequence.

zipfile.ZipFile.testzip()

ZipFile.testzip() Read all the files in the archive and check their CRC’s and file headers. Return the name of the first bad file, or else return None. Calling testzip() on a closed ZipFile will raise a RuntimeError.

tkinter.ttk.Notebook.add()

add(child, **kw) Adds a new tab to the notebook. If window is currently managed by the notebook but hidden, it is restored to its previous position. See Tab Options for the list of available options.