Due to #126, I'm running pyyaml at master. When I try to run code that passes on released versions of pyyaml, it fails in master:
-> raise RepresenterError("cannot represent an object", data)
(Pdb) type(data)
<class 'pmxbot.dictlib.ConfigDict'>
(Pdb) isinstance(data, dict)
True
As the object is a subclass of dict, it would previously be treated as a dict for the purpose of serialization. Is this an intentional change?
Due to #126, I'm running pyyaml at master. When I try to run code that passes on released versions of pyyaml, it fails in master:
As the object is a subclass of dict, it would previously be treated as a dict for the purpose of serialization. Is this an intentional change?