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.

tkinter.ttk.Treeview.see()

see(item) Ensure that item is visible. Sets all of item‘s ancestors open option to True, and scrolls the widget if necessary so that item is within the visible portion of the tree.

json.JSONDecodeError.doc

doc The JSON document being parsed.

logging.handlers.BufferingHandler.emit()

emit(record) Appends the record to the buffer. If shouldFlush() returns true, calls flush() to process the buffer.