shutil.copymode()

shutil.copymode(src, dst, *, follow_symlinks=True) Copy the permission bits from src to dst. The file contents, owner, and group are unaffected. src and dst are path names given as strings. If follow_symlinks is false, and both src and dst are symbolic links, copymode() will attempt to modify the mode of dst itself (rather than the file it points to). This functionality is not available on every platform; please see copystat() for more information. If copymode() cannot modify symbolic links

logging.Logger.critical()

Logger.critical(msg, *args, **kwargs) Logs a message with level CRITICAL on this logger. The arguments are interpreted as for debug().

curses.nocbreak()

curses.nocbreak() Leave cbreak mode. Return to normal “cooked” mode with line buffering.

xml.dom.Node.previousSibling

Node.previousSibling The node that immediately precedes this one with the same parent. For instance the element with an end-tag that comes just before the self element’s start-tag. Of course, XML documents are made up of more than just elements so the previous sibling could be text, a comment, or something else. If this node is the first child of the parent, this attribute will be None. This is a read-only attribute.

logging.Logger.debug()

Logger.debug(msg, *args, **kwargs) Logs a message with level DEBUG on this logger. The msg is the message format string, and the args are the arguments which are merged into msg using the string formatting operator. (Note that this means that you can use keywords in the format string, together with a single dictionary argument.) There are three keyword arguments in kwargs which are inspected: exc_info, stack_info, and extra. If exc_info does not evaluate as false, it causes exception informa

codecs.ignore_errors()

codecs.ignore_errors(exception) Implements the 'ignore' error handling: malformed data is ignored and encoding or decoding is continued without further notice.

tracemalloc.Filter.filename_pattern

filename_pattern Filename pattern of the filter (str).

xmlrpc.client.ProtocolError.errmsg

errmsg The error message or diagnostic string.

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.