﻿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
19075	Query parameters are not decoded properly	Ivan Virabyan	Aymeric Augustin	"
{{{
def index(request):
     q = request.GET['q']
     print q, repr(q)
}}}

When I make a query like this {{{ /?q=%D1%82%D0%B5%D1%81%D1%82 }}}
I get: {{{ ÑÐµÑÑ u'\xd1\x82\xd0\xb5\xd1\x81\xd1\x82' }}}
However the right value must be (and it is in Django 1.4): {{{ тест u'\u0442\u0435\u0441\u0442' }}}"	Bug	closed	HTTP handling	dev	Release blocker	fixed			Accepted	1	0	0	0	0	0
