logging.handlers.RotatingFileHandler

class logging.handlers.RotatingFileHandler(filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=False) Returns a new instance of the RotatingFileHandler class. The specified file is opened and used as the stream for logging. If mode is not specified, 'a' is used. If encoding is not None, it is used to open the file with that encoding. If delay is true, then file opening is deferred until the first call to emit(). By default, the file grows indefinitely. You can use the maxByte

inspect.Signature.replace()

replace(*[, parameters][, return_annotation]) Create a new Signature instance based on the instance replace was invoked on. It is possible to pass different parameters and/or return_annotation to override the corresponding properties of the base signature. To remove return_annotation from the copied Signature, pass in Signature.empty. >>> def test(a, b): ... pass >>> sig = signature(test) >>> new_sig = sig.replace(return_annotation="new return anno") >>&g

operator.concat()

operator.concat(a, b) operator.__concat__(a, b) Return a + b for a and b sequences.

bdb.Bdb.clear_bpbynumber()

clear_bpbynumber(arg) Delete the breakpoint which has the index arg in the Breakpoint.bpbynumber. If arg is not numeric or out of range, return an error message.

operator.ipow()

operator.ipow(a, b) operator.__ipow__(a, b) a = ipow(a, b) is equivalent to a **= b.

tkinter.ttk.Progressbar.step()

step(amount=None) Increments the progress bar’s value by amount. amount defaults to 1.0 if omitted.

multiprocessing.Connection.fileno()

fileno() Return the file descriptor or handle used by the connection.

multiprocessing.TimeoutError

exception multiprocessing.TimeoutError Raised by methods with a timeout when the timeout expires.

email.message.EmailMessage.make_related()

make_related(boundary=None) Convert a non-multipart message into a multipart/related message, moving any existing Content- headers and payload into a (new) first part of the multipart. If boundary is specified, use it as the boundary string in the multipart, otherwise leave the boundary to be automatically created when it is needed (for example, when the message is serialized).

http.server.BaseHTTPRequestHandler.server

server Contains the server instance.