##// END OF EJS Templates
Make `SelectionWidget.values` a dict...
Make `SelectionWidget.values` a dict rename 'labels' and '_value' to 'value_names' and 'value_name'. To specify a mapping of value names and values, use a dict. If you specify `values=[list]`, then an OrderedDict will be used. Assignment after construction only supports a dict.

File last commit:

r13347:54891794
r15024:7b94a2e2
Show More
__init__.py
4 lines | 83 B | text/x-python | PythonLexer
Thomas Spura
Unbundle of all external modules....
r3408 try:
from decorator import *
except ImportError:
Thomas Kluyver
Use explicit relative imports...
r13347 from ._decorator import *