select.epoll.modify()

epoll.modify(fd, eventmask) Modify a registered file descriptor.

subprocess.STARTUPINFO.hStdInput

hStdInput If dwFlags specifies STARTF_USESTDHANDLES, this attribute is the standard input handle for the process. If STARTF_USESTDHANDLES is not specified, the default for standard input is the keyboard buffer.

tkinter.ttk.Combobox.set()

set(value) Sets the value of the combobox to value.

bytes.ljust()

bytes.ljust(width[, fillbyte]) bytearray.ljust(width[, fillbyte]) Return a copy of the object left justified in a sequence of length width. Padding is done using the specified fillbyte (default is an ASCII space). For bytes objects, the original sequence is returned if width is less than or equal to len(s). Note The bytearray version of this method does not operate in place - it always produces a new object, even if no changes were made.

logging.handlers.MemoryHandler.setTarget()

setTarget(target) Sets the target handler for this handler.

shlex.shlex.error_leader()

shlex.error_leader(infile=None, lineno=None) This method generates an error message leader in the format of a Unix C compiler error label; the format is '"%s", line %d: ', where the %s is replaced with the name of the current source file and the %d with the current input line number (the optional arguments can be used to override these). This convenience is provided to encourage shlex users to generate error messages in the standard, parseable format understood by Emacs and other Unix tools.

http.cookies.Morsel.value

Morsel.value The value of the cookie. Deprecated since version 3.5: assigning to value; use set() instead.

math.fabs()

math.fabs(x) Return the absolute value of x.

math.exp()

math.exp(x) Return e**x.

ctypes.DllCanUnloadNow()

ctypes.DllCanUnloadNow() Windows only: This function is a hook which allows implementing in-process COM servers with ctypes. It is called from the DllCanUnloadNow function that the _ctypes extension dll exports.