﻿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
6050	SortedDict can have multiple copies of same key/value pair when iterated over	stephen.judkins@…	nobody	"Behavior is like this:
{{{
>>> from django.utils.datastructures import SortedDict
>>> SortedDict([('foo', 'bar'), ('foo', 'baz')])
{'foo': 'baz', 'foo': 'baz'}
}}}

It should be like this:
{{{
>>> SortedDict([('foo', 'bar'), ('foo', 'baz')])
{'foo': 'baz'}
}}}"		closed	Tools	dev		fixed	SortedDict		Ready for checkin	1	0	0	0	0	0
