﻿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
29627	QueryDict.urlencode() crashes on non-string values	Rafał P.	nobody	"In version 2.0 it was possible to pass integer values to QueryDict and urlencode() it:
{{{
from django.http import QueryDict
d = QueryDict('', mutable=True)
d[""a""] = 1
d.urlencode()
'a=1'
}}}
in 2.1 it raises `AttributeError: 'int' object has no attribute 'encode'`. I think this should be listed as backward - incompatible change in the [https://docs.djangoproject.com/en/2.1/releases/2.1/ Release Notes]."	Bug	closed	HTTP handling	2.1	Release blocker	fixed			Accepted	1	0	0	0	0	0
