﻿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
32561	Unpacking request.GET into a function call turns the values into lists with one item.	atursams	nobody	"Going to this url:

http://localhost:8000/api/quote?from_currency_code=EUR&amount=300&to_currency_code=ILS

{{{
from django.shortcuts import render

def print_params(**kwargs):
    print(*kwargs.items())

async def index(request):
    print_params(**request.GET)
}}}

results in this


{{{
('from_currency_code', ['EUR']) ('amount', ['300']) ('to_currency_code', ['ILS'])
}}}

This is an odd behavior. request.GET.items() has the expected result."	Bug	closed	Uncategorized	3.1	Normal	invalid			Unreviewed	0	0	0	0	0	0
