id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc
216,Representer error,anonymous,xi,"I think that type should reverse to exception results see code:

    def represent_unicode(self, data):
        tag = None
        try:
            data.encode('ascii')
            tag = u'tag:yaml.org,2002:python/unicode'
        except UnicodeEncodeError:
            tag = u'tag:yaml.org,2002:str'
        return self.represent_scalar(tag, data)",defect,new,normal,pyyaml,normal,,,
