tkinter.ttk.Style.theme_names()

theme_names() Returns a list of all known themes.

str.rfind()

str.rfind(sub[, start[, end]]) Return the highest index in the string where substring sub is found, such that sub is contained within s[start:end]. Optional arguments start and end are interpreted as in slice notation. Return -1 on failure.

bz2.compress()

bz2.compress(data, compresslevel=9) Compress data. compresslevel, if given, must be a number between 1 and 9. The default is 9. For incremental compression, use a BZ2Compressor instead.

asyncore.dispatcher.writable()

writable() Called each time around the asynchronous loop to determine whether a channel’s socket should be added to the list on which write events can occur. The default method simply returns True, indicating that by default, all channels will be interested in write events.

msilib.Dialog.line()

line(name, x, y, width, height) Add and return a Line control.

multiprocessing.Process.authkey

authkey The process’s authentication key (a byte string). When multiprocessing is initialized the main process is assigned a random string using os.urandom(). When a Process object is created, it will inherit the authentication key of its parent process, although this may be changed by setting authkey to another byte string. See Authentication keys.

logging.makeLogRecord()

logging.makeLogRecord(attrdict) Creates and returns a new LogRecord instance whose attributes are defined by attrdict. This function is useful for taking a pickled LogRecord attribute dictionary, sent over a socket, and reconstituting it as a LogRecord instance at the receiving end.

asyncio.asyncio.subprocess.Process.returncode

returncode Return code of the process when it exited. A None value indicates that the process has not terminated yet. A negative value -N indicates that the child was terminated by signal N (Unix only).

select.devpoll.register()

devpoll.register(fd[, eventmask]) Register a file descriptor with the polling object. Future calls to the poll() method will then check whether the file descriptor has any pending I/O events. fd can be either an integer, or an object with a fileno() method that returns an integer. File objects implement fileno(), so they can also be used as the argument. eventmask is an optional bitmask describing the type of events you want to check for. The constants are the same that with poll() object. T

urllib.request.Request.data

Request.data The entity body for the request, or None if not specified. Changed in version 3.4: Changing value of Request.data now deletes “Content-Length” header if it was previously set or calculated.