operator.ipow()

operator.ipow(a, b) operator.__ipow__(a, b) a = ipow(a, b) is equivalent to a **= b.

operator.concat()

operator.concat(a, b) operator.__concat__(a, b) Return a + b for a and b sequences.

bdb.Bdb.clear_bpbynumber()

clear_bpbynumber(arg) Delete the breakpoint which has the index arg in the Breakpoint.bpbynumber. If arg is not numeric or out of range, return an error message.

xml.sax.handler.ContentHandler.endElement()

ContentHandler.endElement(name) Signals the end of an element in non-namespace mode. The name parameter contains the name of the element type, just as with the startElement() event.

logging.Logger.exception()

Logger.exception(msg, *args, **kwargs) Logs a message with level ERROR on this logger. The arguments are interpreted as for debug(). Exception info is added to the logging message. This method should only be called from an exception handler.

base64.urlsafe_b64encode()

base64.urlsafe_b64encode(s) Encode bytes-like object s using the URL- and filesystem-safe alphabet, which substitutes - instead of + and _ instead of / in the standard Base64 alphabet, and return the encoded bytes. The result can still contain =.

xml.sax.xmlreader.AttributesNSImpl

class xml.sax.xmlreader.AttributesNSImpl(attrs, qnames) Namespace-aware variant of AttributesImpl, which will be passed to startElementNS(). It is derived from AttributesImpl, but understands attribute names as two-tuples of namespaceURI and localname. In addition, it provides a number of methods expecting qualified names as they appear in the original document. This class implements the AttributesNS interface (see section The AttributesNS Interface).

http.cookiejar.CookiePolicy.netscape

CookiePolicy.netscape Implement Netscape protocol.

sqlite3.Row.keys()

keys() This method returns a list of column names. Immediately after a query, it is the first member of each tuple in Cursor.description.

symtable.Symbol.is_assigned()

is_assigned() Return True if the symbol is assigned to in its block.