pipes.Template.reset()

Template.reset() Restore a pipeline template to its initial state.

xml.sax.xmlreader.XMLReader.parse()

XMLReader.parse(source) Process an input source, producing SAX events. The source object can be a system identifier (a string identifying the input source – typically a file name or a URL), a file-like object, or an InputSource object. When parse() returns, the input is completely processed, and the parser object can be discarded or reset. Changed in version 3.5: Added support of character streams.

logging.handlers.BufferingHandler.emit()

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

json.JSONDecodeError.doc

doc The JSON document being parsed.

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.

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.

math.exp()

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

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.

logging.handlers.MemoryHandler.setTarget()

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