Searched refs:CLoader (Results 1 – 4 of 4) sorted by relevance
/third_party/PyYAML/tests/lib/ |
D | test_yaml_ext.py | 13 def new_scan(stream, Loader=yaml.CLoader): 17 def new_parse(stream, Loader=yaml.CLoader): 21 def new_compose(stream, Loader=yaml.CLoader): 25 def new_compose_all(stream, Loader=yaml.CLoader): 29 def new_load(stream, Loader=yaml.CLoader): 33 def new_load_all(stream, Loader=yaml.CLoader): 75 yaml.Loader = yaml.CLoader 134 for token in yaml.scan(c_data, Loader=yaml.CLoader): 173 for event in yaml.parse(c_data, Loader=yaml.CLoader): 208 c_events = list(yaml.parse(c_data, Loader=yaml.CLoader)) [all …]
|
/third_party/PyYAML/packaging/build/ |
D | smoketest.py | 12 for loader, dumper in [(yaml.CLoader, yaml.CDumper), (yaml.Loader, yaml.Dumper)]:
|
/third_party/PyYAML/ |
D | README.md | 20 >>> yaml.load(stream, Loader=yaml.CLoader)
|
/third_party/PyYAML/lib/yaml/ |
D | cyaml.py | 44 class CLoader(CParser, Constructor, Resolver): class
|