xml.sax.xmlreader.InputSource.getSystemId()

InputSource.getSystemId() Returns the system identifier of this InputSource.

pow()

pow(x, y[, z]) Return x to the power y; if z is present, return x to the power y, modulo z (computed more efficiently than pow(x, y) % z). The two-argument form pow(x, y) is equivalent to using the power operator: x**y. The arguments must have numeric types. With mixed operand types, the coercion rules for binary arithmetic operators apply. For int operands, the result has the same type as the operands (after coercion) unless the second argument is negative; in that case, all arguments are c

mailbox.Mailbox.update()

update(arg) Parameter arg should be a key-to-message mapping or an iterable of (key, message) pairs. Updates the mailbox so that, for each given key and message, the message corresponding to key is set to message as if by using __setitem__(). As with __setitem__(), each key must already correspond to a message in the mailbox or else a KeyError exception will be raised, so in general it is incorrect for arg to be a Mailbox instance. Note Unlike with dictionaries, keyword arguments are not su

colorsys.rgb_to_yiq()

colorsys.rgb_to_yiq(r, g, b) Convert the color from RGB coordinates to YIQ coordinates.

xml.parsers.expat.xmlparser.StartElementHandler()

xmlparser.StartElementHandler(name, attributes) Called for the start of every element. name is a string containing the element name, and attributes is the element attributes. If ordered_attributes is true, this is a list (see ordered_attributes for a full description). Otherwise it’s a dictionary mapping names to values.

curses.textpad.Textbox.edit()

edit([validator]) This is the entry point you will normally use. It accepts editing keystrokes until one of the termination keystrokes is entered. If validator is supplied, it must be a function. It will be called for each keystroke entered with the keystroke as a parameter; command dispatch is done on the result. This method returns the window contents as a string; whether blanks in the window are included is affected by the stripspaces attribute.

wave.Wave_read.getcomptype()

Wave_read.getcomptype() Returns compression type ('NONE' is the only supported type).

calendar.HTMLCalendar.formatyearpage()

formatyearpage(theyear, width=3, css='calendar.css', encoding=None) Return a year’s calendar as a complete HTML page. width (defaulting to 3) specifies the number of months per row. css is the name for the cascading style sheet to be used. None can be passed if no style sheet should be used. encoding specifies the encoding to be used for the output (defaulting to the system default encoding).

bytes.maketrans()

static bytes.maketrans(from, to) static bytearray.maketrans(from, to) This static method returns a translation table usable for bytes.translate() that will map each character in from into the character at the same position in to; from and to must both be bytes-like objects and have the same length. New in version 3.1.

logging.Logger.info()

Logger.info(msg, *args, **kwargs) Logs a message with level INFO on this logger. The arguments are interpreted as for debug().