xml.dom.NamedNodeMap.item()

NamedNodeMap.item(index) Return an attribute with a particular index. The order you get the attributes in is arbitrary but will be consistent for the life of a DOM. Each item is an attribute node. Get its value with the value attribute.

unittest.mock.Mock.assert_any_call()

assert_any_call(*args, **kwargs) assert the mock has been called with the specified arguments. The assert passes if the mock has ever been called, unlike assert_called_with() and assert_called_once_with() that only pass if the call is the most recent one. >>> mock = Mock(return_value=None) >>> mock(1, 2, arg='thing') >>> mock('some', 'thing', 'else') >>> mock.assert_any_call(1, 2, arg='thing')

os.WIFSIGNALED()

os.WIFSIGNALED(status) Return True if the process exited due to a signal, otherwise return False. Availability: Unix.

io.TextIOWrapper.line_buffering

line_buffering Whether line buffering is enabled.

aifc.aifc.rewind()

aifc.rewind() Rewind the read pointer. The next readframes() will start from the beginning.

xmlrpc.client.DateTime.encode()

encode(out) Write the XML-RPC encoding of this DateTime item to the out stream object.

msilib.Dialog

class msilib.Dialog(db, name, x, y, w, h, attr, title, first, default, cancel) Return a new Dialog object. An entry in the Dialog table is made, with the specified coordinates, dialog attributes, title, name of the first, default, and cancel controls. control(name, type, x, y, width, height, attributes, property, text, control_next, help) Return a new Control object. An entry in the Control table is made with the specified parameters. This is a generic method; for specific types, speciali

operator.index()

operator.index(a) operator.__index__(a) Return a converted to an integer. Equivalent to a.__index__().

http.server.BaseHTTPRequestHandler.command

command Contains the command (request type). For example, 'GET'.

base64.standard_b64decode()

base64.standard_b64decode(s) Decode bytes-like object or ASCII string s using the standard Base64 alphabet and return the decoded bytes.