[Repoze-dev] repoze.configuration - YAML with LibYAML

2010-02-18 Thread Joan Miller
It's possible that PyYAML has been built to support the LibYAML bindings so it should be used: try: from yaml import CLoader as Loader from yaml import CDumper as Dumper except ImportError: from yaml import Loader, Dumper

Re: [Repoze-dev] repoze.configuration - YAML with LibYAML

2010-02-18 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Joan Miller wrote: It's possible that PyYAML has been built to support the LibYAML bindings so it should be used: try: from yaml import CLoader as Loader from yaml import CDumper as Dumper except ImportError: from