﻿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
1130	"request.POST[""key""] returns only the last value of a list"	elcio@…	Adrian Holovaty	"If I submit a list of inputs with the same name (as a checkboxes list) or request something like !http://myserver/path?key=a&key=b&key=c I get strange things:

{{{
print request.POST
print request.POST[""key""]
print dict(request.POST)[""key""]
}}}

results:

{{{
{'key': ['a', 'b', 'c']}
c
['a', 'b', 'c']
}}}

I think request.POST[""key""] should return the same as dict(request.POST)[""key""]. The same with GET. Am I missing something?

I'm using rev. [1785] and the built-in Django server.
"	New feature	closed	Core (Other)	dev	normal	wontfix			Unreviewed	0	0	0	0	0	0
