id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc
16	duplicate keys in dictionary cause unpredictable behavior	nickesk@…	xi	"When there are duplicate keys in the same dictionary, PySyck returns unpredictable results, including the wrong data type.

I'm not sure if this is a defect in PySyck, or the underlying syck library. However, older versions of PySyck (<0.55) didn't suffer from this and merely overwrote the duplicate key with the new information.

{{{
#!python
>>> syck.load('foo: bar\nfoo2: bar')
{'foo': 'bar', 'foo2': 'bar'}
>>> syck.load('foo: bar\nfoo2: bar\nfoo: bar')
[('foo', 'bar')]
}}}"	defect	reopened	normal	pysyck	major			
