massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / boto / boto / s3 / keyfile.pyi
1 from typing import Any
2
3 class KeyFile:
4     key: Any
5     location: int
6     closed: bool
7     softspace: int
8     mode: str
9     encoding: str
10     errors: str
11     newlines: str
12     name: Any
13     def __init__(self, key) -> None: ...
14     def tell(self): ...
15     def seek(self, pos, whence: Any = ...): ...
16     def read(self, size): ...
17     def close(self): ...
18     def isatty(self): ...
19     def getkey(self): ...
20     def write(self, buf): ...
21     def fileno(self): ...
22     def flush(self): ...
23     def next(self): ...
24     def readinto(self): ...
25     def readline(self): ...
26     def readlines(self): ...
27     def truncate(self): ...
28     def writelines(self): ...
29     def xreadlines(self): ...