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.

stringprep.in_table_c8()

stringprep.in_table_c8(code) Determine whether code is in tableC.8 (Change display properties or are deprecated).

tkinter.ttk.Progressbar.start()

start(interval=None) Begin autoincrement mode: schedules a recurring timer event that calls Progressbar.step() every interval milliseconds. If omitted, interval defaults to 50 milliseconds.