massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / third_party / 2and3 / boto / s3 / tagging.pyi
1 from typing import Any, Optional\r
2 \r
3 class Tag:\r
4     key = ...  # type: Any\r
5     value = ...  # type: Any\r
6     def __init__(self, key: Optional[Any] = ..., value: Optional[Any] = ...) -> None: ...\r
7     def startElement(self, name, attrs, connection): ...\r
8     def endElement(self, name, value, connection): ...\r
9     def to_xml(self): ...\r
10     def __eq__(self, other): ...\r
11 \r
12 class TagSet(list):\r
13     def startElement(self, name, attrs, connection): ...\r
14     def endElement(self, name, value, connection): ...\r
15     def add_tag(self, key, value): ...\r
16     def to_xml(self): ...\r
17 \r
18 class Tags(list):\r
19     def startElement(self, name, attrs, connection): ...\r
20     def endElement(self, name, value, connection): ...\r
21     def to_xml(self): ...\r
22     def add_tag_set(self, tag_set): ...\r