socket.socket.set_inheritable()

socket.set_inheritable(inheritable) Set the inheritable flag of the socket’s file descriptor or socket’s handle. New in version 3.4.

curses.is_term_resized()

curses.is_term_resized(nlines, ncols) Return True if resize_term() would modify the window structure, False otherwise.

winreg.ConnectRegistry()

winreg.ConnectRegistry(computer_name, key) Establishes a connection to a predefined registry handle on another computer, and returns a handle object. computer_name is the name of the remote computer, of the form r"\\computername". If None, the local computer is used. key is the predefined handle to connect to. The return value is the handle of the opened key. If the function fails, an OSError exception is raised. Changed in version 3.3: See above.

resource.getpagesize()

resource.getpagesize() Returns the number of bytes in a system page. (This need not be the same as the hardware page size.)

subprocess.CalledProcessError.cmd

cmd Command that was used to spawn the child process.

contextlib.ExitStack.enter_context()

enter_context(cm) Enters a new context manager and adds its __exit__() method to the callback stack. The return value is the result of the context manager’s own __enter__() method. These context managers may suppress exceptions just as they normally would if used directly as part of a with statement.

os.stat_result.st_flags

st_flags User defined flags for file.

curses.mouseinterval()

curses.mouseinterval(interval) Set the maximum time in milliseconds that can elapse between press and release events in order for them to be recognized as a click, and return the previous interval value. The default value is 200 msec, or one fifth of a second.

weakref.WeakKeyDictionary.keyrefs()

WeakKeyDictionary.keyrefs() Return an iterable of the weak references to the keys.

xml.etree.ElementTree.ElementTree.iterfind()

iterfind(match, namespaces=None) Same as Element.iterfind(), starting at the root of the tree. New in version 3.2.