﻿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
19294	Strange WSGIRequest behavior	gael@…	nobody	"Looks like QUERY_STRING parsing has some problems:

{{{
>>> from django.core.handlers.wsgi import WSGIRequest
>>> r = WSGIRequest(dict(QUERY_STRING='toto=2;1', REQUEST_METHOD='GET', **{'wsgi.input':None}))
>>> r.GET['1']
u''
>>> r.GET
<QueryDict: {u'1': [u''], u'toto': [u'2']}>
>>> r = WSGIRequest(dict(QUERY_STRING='foo=1&bar=1;foo', REQUEST_METHOD='GET', **{'wsgi.input':None}))
>>> r.GET
<QueryDict: {u'foo': [u'1', u''], u'bar': [u'1']}>
}}}

Is that really expected ?"	Uncategorized	closed	HTTP handling	1.4	Normal	wontfix	wsgi		Unreviewed	0	0	0	0	0	0
