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.

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.

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.