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.

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.

curses.resetty()

curses.resetty() Restore the state of the terminal modes to what it was at the last call to savetty().

sndhdr.what()

sndhdr.what(filename) Determines the type of sound data stored in the file filename using whathdr(). If it succeeds, returns a namedtuple as described above, otherwise None is returned. Changed in version 3.5: Result changed from a tuple to a namedtuple.

marshal.dump()

marshal.dump(value, file[, version]) Write the value on the open file. The value must be a supported type. The file must be an open file object such as sys.stdout or returned by open() or os.popen(). It must be opened in binary mode ('wb' or 'w+b'). If the value has (or contains an object that has) an unsupported type, a ValueError exception is raised — but garbage data will also be written to the file. The object will not be properly read back by load(). The version argument indicates the d

collections.ChainMap.maps

maps A user updateable list of mappings. The list is ordered from first-searched to last-searched. It is the only stored state and can be modified to change which mappings are searched. The list should always contain at least one mapping.