﻿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
29581	MultiValueDict behaviour does not match dict behaviour for single values	Piet van Agtmaal	nobody	"**Description:**
When using a MultiValueDict, retrieving the value for a key with only a single value yields unexpected and inconsistent results compared to a regular dictionary. See the code sample below.

{{{
>>> from django.utils.datastructures import MultiValueDict
>>> mvd = MultiValueDict()
>>> mvd['test'] = 1
>>> mvd['test']
1
>>> dict(mvd)['test']
[1]
}}}

**Expected:**
{{{ dict(mvd)['test'] }}} yields {{{1}}}, like {{{ mvd['test'] }}} does

**Actual:**
{{{ dict(mvd)['test'] }}} yields {{{[1]}}} instead
"	Bug	closed	Utilities	2.0	Normal	wontfix	dict, MultiValueDict		Unreviewed	0	0	0	0	1	0
