Changes between Initial Version and Version 1 of Ticket #58
- Timestamp:
- 08/21/07 16:46:20 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #58 – Description
initial v1 1 1 {{{ 2 2 a = yaml.load(""" 3 3 name: John … … 7 7 print a 8 8 {'name': 'John', 'number': 111} 9 }}} 9 10 10 11 ok so if I do: 11 12 13 {{{ 12 14 print yaml.dump(a) 13 15 {name: John, number: 11} 16 }}} 14 17 15 18 and 16 19 20 {{{ 17 21 print yaml.dump(a, default_flow_style=False) 18 22 name: John 19 23 number: 111 24 }}} 20 25 21 26 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?
