massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / third_party / 2and3 / yaml / serializer.pyi
1 from typing import Any\r
2 from yaml.error import YAMLError\r
3 \r
4 class SerializerError(YAMLError): ...\r
5 \r
6 class Serializer:\r
7     ANCHOR_TEMPLATE = ...  # type: Any\r
8     use_encoding = ...  # type: Any\r
9     use_explicit_start = ...  # type: Any\r
10     use_explicit_end = ...  # type: Any\r
11     use_version = ...  # type: Any\r
12     use_tags = ...  # type: Any\r
13     serialized_nodes = ...  # type: Any\r
14     anchors = ...  # type: Any\r
15     last_anchor_id = ...  # type: Any\r
16     closed = ...  # type: Any\r
17     def __init__(self, encoding=..., explicit_start=..., explicit_end=..., version=..., tags=...) -> None: ...\r
18     def open(self): ...\r
19     def close(self): ...\r
20     def serialize(self, node): ...\r
21     def anchor_node(self, node): ...\r
22     def generate_anchor(self, node): ...\r
23     def serialize_node(self, node, parent, index): ...\r