curses.panel.Panel.replace()

Panel.replace(win) Change the window associated with the panel to the window win.

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.

pathlib.WindowsPath

class pathlib.WindowsPath(*pathsegments) A subclass of Path and PureWindowsPath, this class represents concrete Windows filesystem paths: >>> WindowsPath('c:/Program Files/') WindowsPath('c:/Program Files') pathsegments is specified similarly to PurePath.