id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc
9,Forcing block style,edemaine@…,xi,"Is there an easy way to force the emitter to use block style instead of flow style?  I have one particular case in mind where it would be particularly desirable: ordered dictionaries.  For example:

{{{
>>> yaml.load('[hello: world, goodbye: world]')
[{'hello': 'world'}, {'goodbye': 'world'}]
>>> print yaml.dump(_)
- {hello: world}
- {goodbye: world}
}}}

In my opinion, the output would look much nicer as

{{{
- hello: world
- goodbye: world
}}}

Even if you don't agree with this opinion, there should be a way to force block style in all output.  I did not see an easy way to do this, even with subclassing.  Suggestions?",defect,closed,normal,pyyaml,normal,fixed,,
