id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc
27,yaml.dump seems to be broken,anonymous,xi,"I may be missing something here, but this seems to be broken:

Example that works:
{{{
#!python
>>> print yaml.dump({'name': ""The Cloak 'Colluin'"", 'depth': 5, 'rarity': 45, 'weight': 10, 'cost': 50000, 'flags': ['INT', 'WIS', 'SPEED', 'STEALTH']})
cost: 50000
depth: 5
flags: [INT, WIS, SPEED, STEALTH]
name: The Cloak 'Colluin'
rarity: 45
weight: 10
}}}

Portion of above example:
{{{
#!python
>>> print yaml.dump({'name': ""The Cloak 'Colluin'"", 'depth': 5})
{depth: 5, name: The Cloak 'Colluin'}

}}}

I would expect to get:
{{{
#!python
depth: 5
name: The Cloak 'Colluin'
}}}",defect,closed,normal,pyyaml,normal,worksforme,,
