﻿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
9089	urlencode should support MutliValueDict	Thomas Güttler	gptvnt	"This small patch of django.utils.http lets urlencode() handle list values in !MultiValueDict instances
correctly.

Before:
{{{
>>> from django.utils.http import urlencode
>>> from django.utils.datastructures import MultiValueDict
>>> urlencode(MultiValueDict({'test': [1, 2, 3]}), doseq=True)
'test=3'
}}}

With patch:
{{{
>>> urlencode(MultiValueDict({'test': [1, 2, 3]}), doseq=True)
'test=1&test=2&test=3'
}}}
"	New feature	closed	Core (Other)	1.0	Normal	fixed		Oliver Beattie	Ready for checkin	1	0	0	0	0	0
