MCPcopy Index your code
hub / github.com/netdata/netdata / Dumper

Class Dumper

src/collectors/python.d.plugin/python_modules/pyyaml3/dumper.py:46–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44 Resolver.__init__(self)
45
46class Dumper(Emitter, Serializer, Representer, Resolver):
47
48 def __init__(self, stream,
49 default_style=None, default_flow_style=None,
50 canonical=None, indent=None, width=None,
51 allow_unicode=None, line_break=None,
52 encoding=None, explicit_start=None, explicit_end=None,
53 version=None, tags=None):
54 Emitter.__init__(self, stream, canonical=canonical,
55 indent=indent, width=width,
56 allow_unicode=allow_unicode, line_break=line_break)
57 Serializer.__init__(self, encoding=encoding,
58 explicit_start=explicit_start, explicit_end=explicit_end,
59 version=version, tags=tags)
60 Representer.__init__(self, default_style=default_style,
61 default_flow_style=default_flow_style)
62 Resolver.__init__(self)
63

Callers 3

emitFunction · 0.85
serialize_allFunction · 0.85
dump_allFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…