mailbox.BabylMessage.get_labels()

get_labels() Return a list of labels on the message.

datetime.datetime.isoweekday()

datetime.isoweekday() Return the day of the week as an integer, where Monday is 1 and Sunday is 7. The same as self.date().isoweekday(). See also weekday(), isocalendar().

select.poll.modify()

poll.modify(fd, eventmask) Modifies an already registered fd. This has the same effect as register(fd, eventmask). Attempting to modify a file descriptor that was never registered causes an OSError exception with errno ENOENT to be raised.

turtle.pendown()

turtle.pendown() turtle.pd() turtle.down() Pull the pen down – drawing when moving.

BaseException.args

args The tuple of arguments given to the exception constructor. Some built-in exceptions (like OSError) expect a certain number of arguments and assign a special meaning to the elements of this tuple, while others are usually called only with a single string giving an error message.

asyncio.Server.sockets

sockets List of socket.socket objects the server is listening to, or None if the server is closed.

asynchat.async_chat.get_terminator()

async_chat.get_terminator() Returns the current terminator for the channel.

tkinter.ttk.Treeview

class tkinter.ttk.Treeview bbox(item, column=None) Returns the bounding box (relative to the treeview widget’s window) of the specified item in the form (x, y, width, height). If column is specified, returns the bounding box of that cell. If the item is not visible (i.e., if it is a descendant of a closed item or is scrolled offscreen), returns an empty string. get_children(item=None) Returns the list of children belonging to item. If item is not specified, returns root children.

curses.window.syncdown()

window.syncdown() Touch each location in the window that has been touched in any of its ancestor windows. This routine is called by refresh(), so it should almost never be necessary to call it manually.

ftplib.all_errors

ftplib.all_errors The set of all exceptions (as a tuple) that methods of FTP instances may raise as a result of problems with the FTP connection (as opposed to programming errors made by the caller). This set includes the four exceptions listed above as well as OSError.