﻿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
8008	Bug wih SelectMultiple Widget when form is initialized with request.REQUEST dict	Dimitri Gnidash	nobody	"The value_from_datadict() method of the SelectMultiple widget is using an isinstance() method to determine if the dictionary is a MultiValue one.
Since request.REQUEST is a MergeDict, the value_from_datadict method uses a get() method on the dictionary instead of the getlist()

{{{
def value_from_datadict(self, data, name):
  if isinstance(data, MultiValueDict):
    return data.getlist(name)
  return data.get(name, None)
}}}"		closed	Forms	0.96		duplicate	SelectMultiple REQUEST widgets newforms		Unreviewed	0	0	0	0	0	0
