Warning!
The version you're viewing is not the latest.
Go to the latest version
Class Dumper
Synopsis
class Dumper(Emitter, Serializer, Representer, Resolver)
Description
No description yet.
Mentioned in
- Basic Tutorial / Getting Started
- Documentation / Installation
- Documentation / The yaml package
- Documentation / Dumper
- Documentation / YAMLObject
Inheritance
Ancestors: Representer, Serializer, Resolver, Emitter
Methods
__init__ |
Source
Lines 45-63 in lib3/yaml/dumper.py.
class Dumper(Emitter, Serializer, Representer, Resolver):
def __init__(self, stream,
default_style=None, default_flow_style=False,
canonical=None, indent=None, width=None,
allow_unicode=None, line_break=None,
encoding=None, explicit_start=None, explicit_end=None,
version=None, tags=None, sort_keys=True):
Emitter.__init__(self, stream, canonical=canonical,
indent=indent, width=width,
allow_unicode=allow_unicode, line_break=line_break)
Serializer.__init__(self, encoding=encoding,
explicit_start=explicit_start, explicit_end=explicit_end,
version=version, tags=tags)
Representer.__init__(self, default_style=default_style,
default_flow_style=default_flow_style, sort_keys=sort_keys)
Resolver.__init__(self)