wx.lib.mixins.listctrl.ListCtrlAutoWidthMixin:
A mix-in class that automatically resizes the last column to take up
the remaining width of the wx.ListCtrl.
bmrblib.pystarlib.TagTable.TagTable:
In initializing the class a content has to be given!!! If not then
the class will make something up and it won't be pretty but it will
be following legal syntax.
wx.lib.scrolledpanel.ScrolledPanel:
ScrolledPanel fills a "hole" in the implementation of
wx.ScrolledWindow, providing automatic scrollbar and scrolling
behavior and the tab traversal management that wxScrolledWindow
lacks.
test_suite.system_tests.spectrum.Spectrum:
TestCase class for the functional tests for the support of
different spectrum intensity calculation or errors, signal to noise
and plotting.
wx.lib.mixins.listctrl.TextEditMixin:
A mixin class that enables any text in any column of a multi-column
listctrl to be edited by clicking on the given row and column.
dict:
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list.