﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
6001	Inconsistency between Select and SelectMultiple	Petr Marhoun <petr.marhoun@…>	nobody	"From django.newforms.widget.Select:

{{{
#!python
class Select(Widget):
    def __init__(self, attrs=None, choices=()):
        super(Select, self).__init__(attrs)
        # choices can be any iterable, but we may need to render this widget
        # multiple times. Thus, collapse it into a list so it can be consumed
        # more than once.
        self.choices = list(choices)
}}}

And from django.newforms.widget.!SelectMultiply:

{{{
#!python
class SelectMultiple(Widget):
    def __init__(self, attrs=None, choices=()):
        super(SelectMultiple, self).__init__(attrs)
        # choices can be any iterable
        self.choices = choices
}}}

Should be choices collapsed? !NullBooleanSelect inherits from Select - why doesn't !SelectMultiply inherits from Select too?"		closed	Forms	dev		fixed			Accepted	1	0	1	0	0	0
