﻿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
18175	SortedDict issue when copied with copy.copy	linovia	nobody	"If SortedDict is copied using the copy.copy, the data are duplicated.
{{{

>>> from django.utils.datastructures import SortedDict
>>> from copy import copy
>>> test = SortedDict()
>>> test['a']=1
>>> copy(test)
{'a': 1, 'a': 1}
>>> test
{'a': 1, 'a': 1}
}}}

You'll find joined a test patch to show this issue."	Bug	closed	Uncategorized	1.4	Normal	fixed		linovia	Accepted	1	0	0	0	0	0
