massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / PyMySQL / pymysql / charset.pyi
1 from typing import Any
2
3 MBLENGTH: Any
4
5 class Charset:
6     is_default: Any
7     def __init__(self, id, name, collation, is_default): ...
8
9 class Charsets:
10     def __init__(self): ...
11     def add(self, c): ...
12     def by_id(self, id): ...
13     def by_name(self, name): ...
14
15 def charset_by_name(name): ...
16 def charset_by_id(id): ...