massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / third_party / 2and3 / yaml / reader.pyi
1 from typing import Any\r
2 from yaml.error import YAMLError\r
3 \r
4 class ReaderError(YAMLError):\r
5     name = ...  # type: Any\r
6     character = ...  # type: Any\r
7     position = ...  # type: Any\r
8     encoding = ...  # type: Any\r
9     reason = ...  # type: Any\r
10     def __init__(self, name, position, character, encoding, reason) -> None: ...\r
11 \r
12 class Reader:\r
13     name = ...  # type: Any\r
14     stream = ...  # type: Any\r
15     stream_pointer = ...  # type: Any\r
16     eof = ...  # type: Any\r
17     buffer = ...  # type: Any\r
18     pointer = ...  # type: Any\r
19     raw_buffer = ...  # type: Any\r
20     raw_decode = ...  # type: Any\r
21     encoding = ...  # type: Any\r
22     index = ...  # type: Any\r
23     line = ...  # type: Any\r
24     column = ...  # type: Any\r
25     def __init__(self, stream) -> None: ...\r
26     def peek(self, index=...): ...\r
27     def prefix(self, length=...): ...\r
28     def forward(self, length=...): ...\r
29     def get_mark(self): ...\r
30     def determine_encoding(self): ...\r
31     NON_PRINTABLE = ...  # type: Any\r
32     def check_printable(self, data): ...\r
33     def update(self, length): ...\r
34     def update_raw(self, size=...): ...\r