id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc
21	yaml emitter bug	rwb123@…	xi	"The following code produces bad yaml output,
which subsequently dies in the yaml.load(). 
This is with pyyaml 3.0.3 on python 2.4.1.

{{{
#!python
import yaml

e = {""texas: '"": 92.5}
yammy = yaml.dump(e)
print yammy
e2 = yaml.load(yammy)
print e2
}}}

The yaml output is:

{{{
$ python yamlbug2.py
{'texas: '': 92.5}

Traceback (most recent call last):
  File ""yamlbug2.py"", line 10, in ?
    e2 = yaml.load(yammy)
  File ""/home/blahblah/dl/yaml/PyYAML-3.03/lib/yaml/__init__.py"", line 61, in load
    return loader.get_data()
 ... etc.
}}}"	defect	closed	normal	pyyaml	normal	duplicate		
