sysconfig.get_config_h_filename()

sysconfig.get_config_h_filename() Return the path of pyconfig.h.

urllib.error.HTTPError.reason

reason This is usually a string explaining the reason for this error.

curses.window.hline()

window.hline(ch, n) window.hline(y, x, ch, n) Display a horizontal line starting at (y, x) with length n consisting of the character ch.

curses.mousemask()

curses.mousemask(mousemask) Set the mouse events to be reported, and return a tuple (availmask, oldmask). availmask indicates which of the specified mouse events can be reported; on complete failure it returns 0. oldmask is the previous value of the given window’s mouse event mask. If this function is never called, no mouse events are ever reported.

wave.Wave_write.tell()

Wave_write.tell() Return current position in the file, with the same disclaimer for the Wave_read.tell() and Wave_read.setpos() methods.

ResourceWarning

exception ResourceWarning Base class for warnings related to resource usage. New in version 3.2.

shlex.shlex.quotes

shlex.quotes Characters that will be considered string quotes. The token accumulates until the same quote is encountered again (thus, different quote types protect each other as in the shell.) By default, includes ASCII single and double quotes.

heapq.nsmallest()

heapq.nsmallest(n, iterable, key=None) Return a list with the n smallest elements from the dataset defined by iterable. key, if provided, specifies a function of one argument that is used to extract a comparison key from each element in the iterable: key=str.lower Equivalent to: sorted(iterable, key=key)[:n]

xml.etree.ElementTree.Element.iter()

iter(tag=None) Creates a tree iterator with the current element as the root. The iterator iterates over this element and all elements below it, in document (depth first) order. If tag is not None or '*', only elements whose tag equals tag are returned from the iterator. If the tree structure is modified during iteration, the result is undefined. New in version 3.2.

telnetlib.Telnet.open()

Telnet.open(host, port=0[, timeout]) Connect to a host. The optional second argument is the port number, which defaults to the standard Telnet port (23). The optional timeout parameter specifies a timeout in seconds for blocking operations like the connection attempt (if not specified, the global default timeout setting will be used). Do not try to reopen an already connected instance.