mailbox.MHMessage.set_sequences()

set_sequences(sequences) Set the list of sequences that include this message.

turtle.xcor()

turtle.xcor() Return the turtle’s x coordinate. >>> turtle.home() >>> turtle.left(50) >>> turtle.forward(100) >>> turtle.pos() (64.28,76.60) >>> print(round(turtle.xcor(), 5)) 64.27876

turtle.getshapes()

turtle.getshapes() Return a list of names of all currently available turtle shapes. >>> screen.getshapes() ['arrow', 'blank', 'circle', ..., 'turtle']

tkinter.ttk.Notebook.forget()

forget(tab_id) Removes the tab specified by tab_id, unmaps and unmanages the associated window.

numbers.Rational.denominator

denominator Abstract.

curses.tparm()

curses.tparm(str[, ...]) Instantiate the string str with the supplied parameters, where str should be a parameterized string obtained from the terminfo database. E.g. tparm(tigetstr("cup"), 5, 3) could result in b'\033[6;4H', the exact result depending on terminal type.

bytes.isalnum()

bytes.isalnum() bytearray.isalnum() Return true if all bytes in the sequence are alphabetical ASCII characters or ASCII decimal digits and the sequence is not empty, false otherwise. Alphabetic ASCII characters are those byte values in the sequence b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'. ASCII decimal digits are those byte values in the sequence b'0123456789'. For example: >>> b'ABCabc1'.isalnum() True >>> b'ABC abc1'.isalnum() False

tkinter.scrolledtext.ScrolledText.frame

ScrolledText.frame The frame which surrounds the text and scroll bar widgets.

asyncio.PriorityQueue

class asyncio.PriorityQueue A subclass of Queue; retrieves entries in priority order (lowest first). Entries are typically tuples of the form: (priority number, data).

xml.dom.Element.hasAttribute()

Element.hasAttribute(name) Returns true if the element has an attribute named by name.