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.

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.

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.

tkinter.ttk.Style.theme_names()

theme_names() Returns a list of all known themes.

asyncio.AbstractEventLoop.create_datagram_endpoint()

coroutine AbstractEventLoop.create_datagram_endpoint(protocol_factory, local_addr=None, remote_addr=None, *, family=0, proto=0, flags=0, reuse_address=None, reuse_port=None, allow_broadcast=None, sock=None) Create datagram connection: socket family AF_INET or AF_INET6 depending on host (or family if specified), socket type SOCK_DGRAM. protocol_factory must be a callable returning a protocol instance. This method is a coroutine which will try to establish the connection in the background. Whe

bdb.Bdb.set_return()

set_return(frame) Stop when returning from the given frame.

importlib.abc.SourceLoader.get_code()

get_code(fullname) Concrete implementation of InspectLoader.get_code().

logging.Logger.getEffectiveLevel()

Logger.getEffectiveLevel() Indicates the effective level for this logger. If a value other than NOTSET has been set using setLevel(), it is returned. Otherwise, the hierarchy is traversed towards the root until a value other than NOTSET is found, and that value is returned. The value returned is an integer, typically one of logging.DEBUG, logging.INFO etc.

sqlite3.Cursor.close()

close() Close the cursor now (rather than whenever __del__ is called). The cursor will be unusable from this point forward; a ProgrammingError exception will be raised if any operation is attempted with the cursor.

asyncio.IncompleteReadError

exception asyncio.IncompleteReadError Incomplete read error, subclass of EOFError. expected Total number of expected bytes (int). partial Read bytes string before the end of stream was reached (bytes).