binhex.hexbin()

binhex.hexbin(input, output) Decode a binhex file input. input may be a filename or a file-like object supporting read() and close() methods. The resulting file is written to a file named output, unless the argument is None in which case the output filename is read from the binhex file.

importlib.machinery.ModuleSpec.loader_state

loader_state

select.kevent.data

kevent.data Filter specific data.

memoryview()

memoryview(obj) Return a “memory view” object created from the given argument. See Memory Views for more information.

socket.socket.getpeername()

socket.getpeername() Return the remote address to which the socket is connected. This is useful to find out the port number of a remote IPv4/v6 socket, for instance. (The format of the address returned depends on the address family — see above.) On some systems this function is not supported.

os.ttyname()

os.ttyname(fd) Return a string which specifies the terminal device associated with file descriptor fd. If fd is not associated with a terminal device, an exception is raised. Availability: Unix.

imaplib.IMAP4.getquotaroot()

IMAP4.getquotaroot(mailbox) Get the list of quota roots for the named mailbox. This method is part of the IMAP4 QUOTA extension defined in rfc2087.

shlex.shlex.token

shlex.token The token buffer. It may be useful to examine this when catching exceptions.

select.devpoll.closed

devpoll.closed True if the polling object is closed. New in version 3.4.

tkinter.tix.NoteBook

class tkinter.tix.NoteBook The NoteBook widget can be used to display many windows in a limited space using a notebook metaphor. The notebook is divided into a stack of pages. At one time only one of these pages can be shown. The user can navigate through these pages by choosing the visual “tabs” at the top of the NoteBook widget.