예제 #1
0
파일: forms.py 프로젝트: GREO/GNU-Radio
	def __init__(self, choices=[], labels=None, **kwargs):
		_form_base.__init__(self, converter=converters.chooser_converter(choices), **kwargs)
		self._choices = choices
		self._labels = map(str, labels or choices)
예제 #2
0
 def __init__(self, choices=[], labels=None, **kwargs):
     _form_base.__init__(self,
                         converter=converters.chooser_converter(choices),
                         **kwargs)
     self._choices = choices
     self._labels = map(str, labels or choices)