id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc
184	Invalid sequence handling	nick.demyanchuk@…	xi	"Pyyaml improperly dumps sequence block. For example:


{{{
>>> from yaml import load, dump

>>> cfg = """"""key:
              - value
              - another one
              - foo
          """"""

>>> yaml_dict = load(cfg)

>>> print yaml_dict
{'key': ['value', 'another one', 'foo']}

>>> new_cfg = dump(yaml_dict)

>>> print new_cfg
key: [value, another one, foo]
}}}





"	defect	closed	normal	pyyaml	normal	invalid		
