id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc
24,dictionaries without at least one list element as values seem not to work,anonymous,xi,"{{{
>>> print yaml.dump({'name': 'Silenthand Olleander', 'race': 'Human', 'traits': 1})
{traits: 1, race: Human, name: Silenthand Olleander}
}}}



{{{
>>> print yaml.dump({'name': 'Silenthand Olleander', 'race': 'Human', 'traits': [1,2]})

traits: [1, 2]
race: Human
name: Silenthand Olleander
}}}


it seems without a list as at least one value element in dict the dump is not working properly



",defect,closed,normal,pyyaml,normal,worksforme,,
