id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc
166,PyYAML should use libyaml if libyaml available,sgwong,xi,"Currently PyYAML only use python implementation although the libyaml available. The following simple changes on `__init__.py` should do:
(I'm not sure whats the use of `__with_libyaml__`)

{{{
#!python
__version__ = '3.09'

try:
    from cyaml import *
    __with_libyaml__ = True
    Loader = CLoader
    Dumper = CDumper
except ImportError:
    __with_libyaml__ = False 
}}}",enhancement,closed,normal,pyyaml,normal,wontfix,,
