email.errors.MessageError

exception email.errors.MessageError This is the base class for all exceptions that the email package can raise. It is derived from the standard Exception class and defines no additional methods.

asyncio.StreamReader.set_transport()

set_transport(transport) Set the transport.

shlex.shlex.read_token()

shlex.read_token() Read a raw token. Ignore the pushback stack, and do not interpret source requests. (This is not ordinarily a useful entry point, and is documented here only for the sake of completeness.)

tkinter.ttk.Widget.identify()

identify(x, y) Returns the name of the element at position x y, or the empty string if the point does not lie within any element. x and y are pixel coordinates relative to the widget.

types.new_class()

types.new_class(name, bases=(), kwds=None, exec_body=None) Creates a class object dynamically using the appropriate metaclass. The first three arguments are the components that make up a class definition header: the class name, the base classes (in order), the keyword arguments (such as metaclass). The exec_body argument is a callback that is used to populate the freshly created class namespace. It should accept the class namespace as its sole argument and update the namespace directly with

uuid.UUID.version

UUID.version The UUID version number (1 through 5, meaningful only when the variant is RFC_4122).

decimal.Decimal.is_canonical()

is_canonical() Return True if the argument is canonical and False otherwise. Currently, a Decimal instance is always canonical, so this operation always returns True.

traceback.TracebackException.exc_type

exc_type The class of the original traceback.

os.WIFCONTINUED()

os.WIFCONTINUED(status) Return True if the process has been continued from a job control stop, otherwise return False. Availability: Unix.

os.sched_get_priority_min()

os.sched_get_priority_min(policy) Get the minimum priority value for policy. policy is one of the scheduling policy constants above.