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.

datetime.time.tzinfo

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

io.UnsupportedOperation

exception io.UnsupportedOperation An exception inheriting OSError and ValueError that is raised when an unsupported operation is called on a stream.

tkinter.ttk.Progressbar

class tkinter.ttk.Progressbar 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. step(amount=None) Increments the progress bar’s value by amount. amount defaults to 1.0 if omitted. stop() Stop autoincrement mode: cancels any recurring timer event initiated by Progressbar.start() for this progress bar.