datetime.time.tzinfo

time.tzinfo The object passed as the tzinfo argument to the time constructor, or None if none was passed.

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.

stringprep.in_table_c8()

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

http.server.BaseHTTPRequestHandler.server

server Contains the server instance.

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).

multiprocessing.TimeoutError

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

multiprocessing.Connection.fileno()

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

tkinter.ttk.Progressbar.step()

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

operator.ipow()

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

operator.concat()

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