msilib.View.Execute()

View.Execute(params) Execute the SQL query of the view, through MSIViewExecute(). If params is not None, it is a record describing actual values of the parameter tokens in the query.

operator.__rshift__()

operator.__rshift__(a, b) Return a shifted right by b.

urllib.request.HTTPCookieProcessor.cookiejar

HTTPCookieProcessor.cookiejar The http.cookiejar.CookieJar in which cookies are stored.

ipaddress.IPv6Address.sixtofour

sixtofour For addresses that appear to be 6to4 addresses (starting with 2002::/16) as defined by RFC 3056, this property will report the embedded IPv4 address. For any other address, this property will be None.

pathlib.Path.write_text()

Path.write_text(data, encoding=None, errors=None) Open the file pointed to in text mode, write data to it, and close the file: >>> p = Path('my_text_file') >>> p.write_text('Text file contents') 18 >>> p.read_text() 'Text file contents' New in version 3.5.

curses.window.insertln()

window.insertln() Insert a blank line under the cursor. All following lines are moved down by one line.

bdb.Bdb.user_line()

user_line(frame) This method is called from dispatch_line() when either stop_here() or break_here() yields True.

io.IOBase.seekable()

seekable() Return True if the stream supports random access. If False, seek(), tell() and truncate() will raise OSError.

audioop.findfit()

audioop.findfit(fragment, reference) Try to match reference as well as possible to a portion of fragment (which should be the longer fragment). This is (conceptually) done by taking slices out of fragment, using findfactor() to compute the best match, and minimizing the result. The fragments should both contain 2-byte samples. Return a tuple (offset, factor) where offset is the (integer) offset into fragment where the optimal match started and factor is the (floating-point) factor as per fin

logging.handlers.SocketHandler.createSocket()

createSocket() Tries to create a socket; on failure, uses an exponential back-off algorithm. On initial failure, the handler will drop the message it was trying to send. When subsequent messages are handled by the same instance, it will not try connecting until some time has passed. The default parameters are such that the initial delay is one second, and if after that delay the connection still can’t be made, the handler will double the delay each time up to a maximum of 30 seconds. This be