Home
last modified time | relevance | path

Searched refs:CDumper (Results 1 – 5 of 5) sorted by relevance

/third_party/PyYAML/tests/lib/
Dtest_yaml_ext.py45 def new_emit(events, stream=None, Dumper=yaml.CDumper, **kwds):
49 def new_serialize(node, stream, Dumper=yaml.CDumper, **kwds):
53 def new_serialize_all(nodes, stream=None, Dumper=yaml.CDumper, **kwds):
57 def new_dump(data, stream=None, Dumper=yaml.CDumper, **kwds):
61 def new_dump_all(documents, stream=None, Dumper=yaml.CDumper, **kwds):
78 yaml.Dumper = yaml.CDumper
204 c_data = yaml.emit(events, Dumper=yaml.CDumper)
/third_party/PyYAML/packaging/build/
Dsmoketest.py12 for loader, dumper in [(yaml.CLoader, yaml.CDumper), (yaml.Loader, yaml.Dumper)]:
/third_party/PyYAML/
DREADME.md21 >>> yaml.dump(data, Dumper=yaml.CDumper)
DCHANGES174 * Fixed the path resolver in CDumper.
/third_party/PyYAML/lib/yaml/
Dcyaml.py85 class CDumper(CEmitter, Serializer, Representer, Resolver): class