﻿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
6769	QueryDict's iteritems() wraps lists in another list	eric@…	nobody	"When using a querydict's .iteritems(), it wraps lists into another list, but not other types, whereas {{{__getitem__}}} doesn't do that:
{{{
In [1]: from django import http
In [4]: qd=http.QueryDict('', mutable=True)

In [5]: qd['foo']='bar'

In [6]: qd['foo_list']=[]

In [7]: qd['foo_list2']=[1,2,3]

In [8]: for k,v in qd.iteritems(): print k,v
  ...:
foo_list [[]]
foo [u'bar']
foo_list2 [[1, 2, 3]]

In [9]: for k in qd: print k, qd[k]
  ...:
foo_list []
foo bar
foo_list2 [1, 2, 3]
}}}"		closed	Uncategorized	dev		duplicate			Accepted	0	0	0	0	0	0
