ossaudiodev.openmixer()

ossaudiodev.openmixer([device]) Open a mixer device and return an OSS mixer device object. device is the mixer device filename to use. If it is not specified, this module first looks in the environment variable MIXERDEV for a device to use. If not found, it falls back to /dev/mixer.

turtle.pos()

turtle.pos() Return the turtle’s current location (x,y) (as a Vec2D vector). >>> turtle.pos() (440.00,-0.00)

Other Graphical User Interface Packages

Major cross-platform (Windows, Mac OS X, Unix-like) GUI toolkits are available for Python: See also PyGObject provides introspection bindings for C libraries using GObject. One of these libraries is the GTK+ 3 widget set. GTK+ comes with many more widgets than Tkinter provides. An online Python GTK+ 3 Tutorial is available. PyGTK provides bindings for an older version of the library, GTK+ 2. It provides an object oriented interface that is slightly higher level than the C one. There are also

imaplib.IMAP4.xatom()

IMAP4.xatom(name[, ...]) Allow simple extension commands notified by server in CAPABILITY response.

tuple()

tuple([iterable]) Rather than being a function, tuple is actually an immutable sequence type, as documented in Tuples and Sequence Types — list, tuple, range.

mailbox.ExternalClashError

exception mailbox.ExternalClashError Raised when some mailbox-related condition beyond the control of the program causes it to be unable to proceed, such as when failing to acquire a lock that another program already holds a lock, or when a uniquely-generated file name already exists.

imaplib.IMAP4.list()

IMAP4.list([directory[, pattern]]) List mailbox names in directory matching pattern. directory defaults to the top-level mail folder, and pattern defaults to match anything. Returned data contains a list of LIST responses.

mailbox.MH.close()

close() MH instances do not keep any open files, so this method is equivalent to unlock().

tarfile.TarInfo.pax_headers

TarInfo.pax_headers A dictionary containing key-value pairs of an associated pax extended header.

importlib.machinery.ExtensionFileLoader.get_source()

get_source(fullname) Returns None as extension modules do not have source code.