telnetlib.Telnet.msg()

Telnet.msg(msg, *args) Print a debug message when the debug level is > 0. If extra arguments are present, they are substituted in the message using the standard string formatting operator.

tkinter.ttk.Treeview.selection_set()

selection_set(items) items becomes the new selection.

unicodedata.mirrored()

unicodedata.mirrored(chr) Returns the mirrored property assigned to the character chr as integer. Returns 1 if the character has been identified as a “mirrored” character in bidirectional text, 0 otherwise.

poplib.POP3.rpop()

POP3.rpop(user) Use RPOP authentication (similar to UNIX r-commands) to log into POP3 server.

object

class object Return a new featureless object. object is a base for all classes. It has the methods that are common to all instances of Python classes. This function does not accept any arguments. Note object does not have a __dict__, so you can’t assign arbitrary attributes to an instance of the object class.

trace.CoverageResults.write_results()

write_results(show_missing=True, summary=False, coverdir=None) Write coverage results. Set show_missing to show lines that had no hits. Set summary to include in the output the coverage summary per module. coverdir specifies the directory into which the coverage result files will be output. If None, the results for each source file are placed in its directory.

base64.decode()

base64.decode(input, output) Decode the contents of the binary input file and write the resulting binary data to the output file. input and output must be file objects. input will be read until input.readline() returns an empty bytes object.

http.client.UnknownProtocol

exception http.client.UnknownProtocol A subclass of HTTPException.

asyncio.LimitOverrunError.consumed

consumed Total number of to be consumed bytes.

codecs.register()

codecs.register(search_function) Register a codec search function. Search functions are expected to take one argument, being the encoding name in all lower case letters, and return a CodecInfo object. In case a search function cannot find a given encoding, it should return None. Note Search function registration is not currently reversible, which may cause problems in some cases, such as unit testing or module reloading.