id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc
58,Is there a way??,john.mcginnis@…,xi,"{{{
a = yaml.load(""""""
   name: John
   number: 111
"""""")

print a
{'name': 'John', 'number': 111}
}}}

ok so if I do:

{{{
print yaml.dump(a) 
{name: John, number: 11}
}}}

and 

{{{
print yaml.dump(a, default_flow_style=False)
name: John
number: 111
}}}

My question is, is there a variable in the code that could make the block style the default output without having to reference the style preference all the time?

",task,closed,low,pyyaml,minor,wontfix,style,
