asyncio.Future.remove_done_callback()

remove_done_callback(fn) Remove all instances of a callback from the “call when done” list. Returns the number of callbacks removed.

subprocess.Popen.kill()

Popen.kill() Kills the child. On Posix OSs the function sends SIGKILL to the child. On Windows kill() is an alias for terminate().

dis.show_code()

dis.show_code(x, *, file=None) Print detailed code object information for the supplied function, method, source code string or code object to file (or sys.stdout if file is not specified). This is a convenient shorthand for print(code_info(x), file=file), intended for interactive exploration at the interpreter prompt. New in version 3.2. Changed in version 3.4: Added file parameter.

traceback.format_list()

traceback.format_list(extracted_list) Given a list of tuples as returned by extract_tb() or extract_stack(), return a list of strings ready for printing. Each string in the resulting list corresponds to the item with the same index in the argument list. Each string ends in a newline; the strings may contain internal newlines as well, for those items whose source text line is not None.

cgi.parse_header()

cgi.parse_header(string) Parse a MIME header (such as Content-Type) into a main value and a dictionary of parameters.

socketserver.BaseServer.socket_type

socket_type The type of socket used by the server; socket.SOCK_STREAM and socket.SOCK_DGRAM are two common values.

email.message.Message.__getitem__()

__getitem__(name) Return the value of the named header field. name should not include the colon field separator. If the header is missing, None is returned; a KeyError is never raised. Note that if the named field appears more than once in the message’s headers, exactly which of those field values will be returned is undefined. Use the get_all() method to get the values of all the extant named headers.

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.

ipaddress.IPv6Network.max_prefixlen

max_prefixlen

tkinter.ttk.Treeview.identify_region()

identify_region(x, y) Returns one of: region meaning heading Tree heading area. separator Space between two columns headings. tree The tree area. cell A data cell. Availability: Tk 8.6.