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

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.

uuid.UUID.version

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

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.

poplib.POP3.pass_()

POP3.pass_(password) Send password, response includes message count and mailbox size. Note: the mailbox on the server is locked until quit() is called.

decimal.Decimal.adjusted()

adjusted() Return the adjusted exponent after shifting out the coefficient’s rightmost digits until only the lead digit remains: Decimal('321e+5').adjusted() returns seven. Used for determining the position of the most significant digit with respect to the decimal point.

imaplib.IMAP4.append()

IMAP4.append(mailbox, flags, date_time, message) Append message to named mailbox.